本帖最后由 宁振庄 于 2012-9-24 22:52 编辑
- public class Test {
- public static void main(String[] args) {
- char ch = '张';
- System.out.println("'张'对应的码值:" + (int)ch);
-
- int a = 24352;
- char b =(char)a;
- System.out.println("'张'对应的码值转为字符打印出来:" + b);
- }}
复制代码 打印结果:
'张'对应的码值:24352
'张'对应的码值24352转为字符打印出来:张
|