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」です。