UTF7Encoding.GetMaxCharCount(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算將指定數目的位元組解碼所產生的最大字元數。
public:
override int GetMaxCharCount(int byteCount);
public override int GetMaxCharCount (int byteCount);
override this.GetMaxCharCount : int -> int
Public Overrides Function GetMaxCharCount (byteCount As Integer) As Integer
參數
- byteCount
- Int32
要解碼的位元組數。
傳回
解碼指定位元組數所產生的最大字元數。
例外狀況
發生後援 (如需詳細資訊,請參閱 .NET 中的字元編碼)
-和-
範例
下列程式代碼範例示範如何使用 GetMaxCharCount 方法來傳回譯指定位元組數目所產生的最大字元數。
using namespace System;
using namespace System::Text;
int main()
{
UTF7Encoding^ utf7 = gcnew UTF7Encoding;
int byteCount = 8;
int maxCharCount = utf7->GetMaxCharCount( byteCount );
Console::WriteLine( "Maximum of {0} characters needed to decode {1} bytes.", maxCharCount, byteCount );
}
using System;
using System.Text;
class UTF7EncodingExample {
public static void Main() {
UTF7Encoding utf7 = new UTF7Encoding();
int byteCount = 8;
int maxCharCount = utf7.GetMaxCharCount(byteCount);
Console.WriteLine(
"Maximum of {0} characters needed to decode {1} bytes.",
maxCharCount,
byteCount
);
}
}
Imports System.Text
Class UTF7EncodingExample
Public Shared Sub Main()
Dim utf7 As New UTF7Encoding()
Dim byteCount As Integer = 8
Dim maxCharCount As Integer = utf7.GetMaxCharCount(byteCount)
Console.WriteLine( _
"Maximum of {0} characters needed to decode {1} bytes.", _
maxCharCount, _
byteCount _
)
End Sub
End Class
備註
若要計算儲存結果字元所需的 GetChars 確切數組大小,應用程式會使用 GetCharCount。 若要計算數位大小上限,應用程式應該使用 GetMaxCharCount。 方法 GetCharCount 通常允許配置較少的記憶體,而 GetMaxCharCount 方法通常執行速度較快。
GetMaxCharCount 是最差大小寫的數位,包括目前選取 DecoderFallback的最差大小寫。 如果選擇具有可能大型字串的後援, GetMaxCharCount 可以傳回大值。
在大部分情況下,此方法會傳回小型字串的合理數位。 對於大型字串,您可能必須在使用非常大的緩衝區和攔截錯誤之間選擇,在罕見的情況下,超過更合理的緩衝區。 您可能也想要考慮使用 GetCharCount 或 Decoder.Convert的不同方法。
GetMaxCharCount 與沒有關聯 GetBytes。 如果您的應用程式需要與搭配 GetBytes使用的類似函式,它應該使用 GetMaxByteCount。
注意
GetMaxCharCount(N)
不一定與 N* GetMaxCharCount(1)
相同值。