Very simple.
(很简单。)
Just cast your char
as an int
. (只需将您的char
为int
。)
char character = 'a';
int ascii = (int) character;
In your case, you need to get the specific Character from the String first and then cast it.
(在您的情况下,您需要首先从String中获取特定的Character,然后进行转换。)
char character = name.charAt(0); // This gives the character 'a'
int ascii = (int) character; // ascii is now 97.
Though cast is not required explicitly, but its improves readability.
(尽管强制转换不是明确要求的,但是它提高了可读性。)
int ascii = character; // Even this will do the trick.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…