gpt4 book ai didi

c# - 为什么 "K".Length 给我错误的结果?

转载 作者:可可西里 更新时间:2023-11-01 09:00:20 26 4
gpt4 key购买 nike

我看到了这个奇怪的问题,并且在网络上的任何地方都找不到与此类似的问题:

int l = "K".Length;    //This actually returns 2 !!! The 'Autos' window in
//the debugger also shows "K".Length as 2.

string s = "K";
l = s.Length; //Whereas this returns 1 as expected

我在各种 C# 项目中尝试过此操作,甚至请另一位开发人员确认行为在不同机器上的不同项目中是相同的。

我在 VB.NET 中尝试了同样的方法:

Dim l As Integer = "K".Length    'This returns 1 correctly

我丢了吗?

最佳答案

那是因为“K”与“K”不同,里面有一个不可见的字符,即ascii值30(记录分隔符)。

你可以通过做来验证这一点

byte[] bytes = Encoding.ASCII.GetBytes("K");

关于c# - 为什么 "K".Length 给我错误的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15522413/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com