Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 char 转换为 int 并返回。
这是我用来将 char 转换为 int 的方法:
(char)65 // Returns 'a'
这是我试图用来将其转换回来的内容:
(int)'a' // Returns 97
有什么想法我能做什么?
尝试这个,
char x = 'a'; int y = (int)x;
65 是大写字母“A”的字符代码。97 是小写的“a”。