请大佬帮看一下C#里的SubString();,谢谢!

static void Main(string[] args)
{
string str1 = Console.ReadLine();
string str2 = "";
byte[] byt=new byte[100];
byt = Encoding.Unicode.GetBytes(str1);
str2 = Encoding.Unicode.GetString(byt).Substring (0,byt.Length );
Console.Write(str2);
Console.ReadLine();

}
这里出现未处理 System.ArgumentOutOfRangeException
Message="索引和长度必须引用该字符串内的位置。\r\n参数名: length"
Source="mscorlib"
ParamName="length"
StackTrace:
在 System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy)
在 System.String.Substring(Int32 startIndex, Int32 length)
在 ConsoleApplication15.Program.Main(String[] args) 位置 E:\chen\Visual Studio 2008\Projects\文件\ConsoleApplication15\ConsoleApplication15\Program.cs:行号 17
在 System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
在 System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
在 Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
在 System.Threading.ThreadHelper.ThreadStart_Context(Object state)
在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
在 System.Threading.ThreadHelper.ThreadStart()
InnerException:
请问是怎么回事?

智慧大石
浏览 322回答 2
2回答

倚天杖

string str1 = "dsfadfasdfasdfasdfasdfasdfasdfasdf";string str2 = "";byte[] byt = new byte[100];byt = Encoding.Unicode.GetBytes(str1);str2 = Encoding.Unicode.GetString(byt).Substring(0, byt.Length);Console.Write(str2);Console.ReadLine();上边是我假设的,此时假设 str1为 "dsfadfasdfasdfasdfasdfasdfasdfasdf"虽然你定义了 byte[] byt = new byte[100];但是GetBytes在生成字节序列的时候,填充了数组的前68个,后边的都是空的,这样解码为str2的时候他的dsfadfasdfasdfasdfasdfasdfasdfasdf的长度还是原来的长度,但是你的byt.Length是100,这样就造成了越界了,肯定会报错的 ,建议你数组可以使用arraylist可变长数组,

杨魅力

byt的长度是str1转换字节后的长度,并不是str1的长度,所以可能会引起越界起始位置和长度要根据str1.length来斟酌
打开App,查看更多内容
随时随地看视频慕课网APP