Decoder コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Decoder クラスの新しいインスタンスを初期化します。
protected:
Decoder();
protected Decoder ();
Protected Sub New ()
例
次の例では、新しい Decoder インスタンスを初期化するための 2 つの手法を示します。
using namespace System;
using namespace System::Text;
int main()
{
// A Decoder is obtained from an Encoding.
UnicodeEncoding^ uni = gcnew UnicodeEncoding;
Decoder^ dec1 = uni->GetDecoder();
// A more direct technique.
Decoder^ dec2 = Encoding::Unicode->GetDecoder();
// dec1 and dec2 seem to be the same.
Console::WriteLine( dec1 );
Console::WriteLine( dec2 );
// Note that their hash codes differ.
Console::WriteLine( dec1->GetHashCode() );
Console::WriteLine( dec2->GetHashCode() );
}
/* This code example produces the following output.
System.Text.UnicodeEncoding+Decoder
System.Text.UnicodeEncoding+Decoder
54267293
18643596
*/
using System;
using System.Text;
class EncoderExample {
public static void Main() {
// A Decoder is obtained from an Encoding.
UnicodeEncoding uni = new UnicodeEncoding();
Decoder dec1 = uni.GetDecoder();
// A more direct technique.
Decoder dec2 = Encoding.Unicode.GetDecoder();
// dec1 and dec2 seem to be the same.
Console.WriteLine(dec1.ToString());
Console.WriteLine(dec2.ToString());
// Note that their hash codes differ.
Console.WriteLine(dec1.GetHashCode());
Console.WriteLine(dec2.GetHashCode());
}
}
/* This code example produces the following output.
System.Text.UnicodeEncoding+Decoder
System.Text.UnicodeEncoding+Decoder
58225482
54267293
*/
Imports System.Text
Class EncoderExample
Public Shared Sub Main()
' A Decoder is obtained from an Encoding.
Dim uni As New UnicodeEncoding()
Dim dec1 As Decoder = uni.GetDecoder()
' A more direct technique.
Dim dec2 As Decoder = Encoding.Unicode.GetDecoder()
' dec1 and dec2 seem to be the same.
Console.WriteLine(dec1.ToString())
Console.WriteLine(dec2.ToString())
' Note that their hash codes differ.
Console.WriteLine(dec1.GetHashCode())
Console.WriteLine(dec2.GetHashCode())
End Sub
End Class
'This code example produces the following output.
'System.Text.UnicodeEncoding+Decoder
'System.Text.UnicodeEncoding+Decoder
'58225482
'54267293
'
注釈
このクラスの実装のインスタンスを取得するには、アプリケーションで 実装の メソッドを GetDecoder 使用する Encoding 必要があります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET