gpt4 book ai didi

c# - 奇怪的场景 Convert.ToChar(integer) or (char)integer

转载 作者:行者123 更新时间:2023-12-05 08:14:28 24 4
gpt4 key购买 nike

我有以下条件。

Console.WriteLine(Convert.ToChar(65)); // Gives 'A'

Console.WriteLine(Convert.ToChar(65) + 1); // Gives 66; Expectation was 'A1'

Console.WriteLine(Convert.ToChar(65) + "1"); // Gives 'A1'

这是为什么呢?我想要第三个案例。

最佳答案

您得到 66 而不是 A1 的原因是您将一个字符添加到一个整数中。如果你向 char 添加一个字符串,只有这样它才会返回一个字符串。

documentation on char The char keyword is used to declare an instance of the System.Char structure that the .NET Framework uses to represent a Unicode character. The value of a Char object is a 16-bit numeric (ordinal) value

关于c# - 奇怪的场景 Convert.ToChar(integer) or (char)integer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67676674/

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