3.1 常量的概念与打印输出
常量:在程序运行期间,固定不变的量。
常量的分类:
1.字符常量:凡是用双引号括起来的部分,,叫做字符串常量。例如:“abc”、“Hello”、“123”
2.整数常量:直接写上的数字,没有小数点。例如:100、200、0、-250
3.浮点数常量:直接写上的数字,有小数点。例如:2.5、-3.14、0.0
4.字符常量:凡是用单引号引起来的单个字符,就做字符常量。例如:‘A’、'b'、‘9’、'中’
5.布尔常量:只有量中取值。true、false
6.空常量:null。代表没有任何数据
常量的打印输出:
public class Demo01Const{ public static void main(String[] args){ //字符串常量 System.out.println("ABC"); System.out.println("");//字符串两个双引号中间的内容为空; System.out.println("XYZ"); //整数常量 System.out.println(30); System.out.println(-500); //浮点数常量(小数) System.out.println(3.14); System.out.println(-2.5); //字符常量 System.out.println('A'); System.out.println('6'); //System.out.println('');//两个单引号中间必须有且仅有一个字符,没有不行 //System.out.println('AB');//两个单引号中间必须有且仅有一个字符,有两个不行 //布尔常量 System.out.println(true); System.out.println(false); //空常量,空常量不能直接打印输出。 //System.out.println(null); } }
javac 编译时出现 “错误: 编码 GBK 的不可映射字符 (0x8F)” 报错的解决方案:
指定字符集编码进行编译:
javac -encoding UTF-8 Demo01Const.java