UnicodeEncoding.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()
{
UnicodeEncoding^ Unicode = gcnew UnicodeEncoding;
int byteCount = 8;
int maxCharCount = Unicode->GetMaxCharCount( byteCount );
Console::WriteLine( "Maximum of {0} characters needed to decode {1} bytes.", maxCharCount, byteCount );
}
using System;
using System.Text;
class UnicodeEncodingExample {
public static void Main() {
UnicodeEncoding Unicode = new UnicodeEncoding();
int byteCount = 8;
int maxCharCount = Unicode.GetMaxCharCount(byteCount);
Console.WriteLine(
"Maximum of {0} characters needed to decode {1} bytes.",
maxCharCount,
byteCount
);
}
}
Imports System.Text
Class UnicodeEncodingExample
Public Shared Sub Main()
Dim uni As New UnicodeEncoding()
Dim byteCount As Integer = 8
Dim maxCharCount As Integer = uni.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 检索大型值。
在大多数情况下,此方法检索小字符串的合理数字。 对于大型字符串,可能需要选择使用非常大的缓冲区和捕获错误(在极少数情况下超出更合理的缓冲区)。 你可能还需要考虑使用或的其他方法 GetCharCountConvert 。
GetMaxCharCount与之间没有关系 GetBytes 。 如果应用程序需要与 一起使用 GetBytes的类似函数,则应使用 GetMaxByteCount。
注意
GetMaxCharCount(N)
不一定与相同 N* GetMaxCharCount(1)
。