【发布时间】:2014-12-01 12:31:06
【问题描述】:
如何将 char 转换为其数字编码值?
我使用的代码是
public class Q1A {
int toInt(char character){
int getInt = toInt(character);
return getInt;
}
}
对不起,如果我的问题难以理解
【问题讨论】:
-
就
int toInt(char character){ return character; }
标签: java