class TestCN
{
public static void main(String[] args)
{
int intCN = '头' ;
char charCN ='头' ;
System.out.println("int型汉字="+intCN);
System.out.println("char型汉字="+charCN);
}
}
输出结果为:
int型汉字=22836
char型汉字=头
此题来说明:基本数据类型BYTE,CHAR,SHORT在参与运算时都转换为INT类型来计算,低容量自动转容量高的类型.
黑夜的冷酷 [url]http://sywand.iteye.com[/url]