标签:
package hello; public class string { public static void main(String[] asdf){ int i; i = 123; int m=1,n=2,x=3,y=4; final double PAI= 3.1415926; //pai = 3.14;常量只能赋值一次 常量命名一般是全大写PAI String Strname = "TOM住在这个房间"; System.out.println(Strname); Strname = "张三住在这里"; System.out.println(Strname); System.out.println(i); System.out.println(m); System.out.println(n); System.out.println(x); System.out.println(y); byte b=127;//超过127就会报错 最大值 byte a=-128;//超过128就会报错 最大值 short s = 2; int c = 123; long l = 1234L;//后边加L强制转化成long型 int w= (int)1234L;//强制转换成int型 float f = 123.45f;//默认不可以的 机上F就可以了 double d=123.45; f=(float)d; System.out.println(f); char cc=‘a‘;//只能是单引号 引起的单个字符 int aa=cc; System.out.println("aa="+aa); char bb = 98; System.out.println("bb="+bb);//ASCII码, boolean t=true; t=false; } }
标签:
原文地址:http://www.cnblogs.com/php111/p/5013762.html