【JAVA】 字面值

当向程序中插入文字值时,编译器知道使用的类型。但有时类型是模糊的,所以要通过以文字值相关联的字符形式添加一些额外信息来指导编译器。
见下例:

public class Literals { 
	public static void main(String[] args) {
		int i1 = 0x2f; // Hexadecimal (lowercase) 
		print("i1: " + Integer.toBinaryString(i1)); 
		int i2 = 0X2F; // Hexadecimal (uppercase) 
		print("i2: " + Integer.toBinaryString(i2));
		int i3 = 0177; // Octal (leading zero) 
		print("i3: " + Integer.toBinaryString(i3)); 
		char c = 0xffff; // max char hex value
		print("c: " + Integer.toBinaryString(c)); 
		byte b = 0x7f; // max byte hex value 
		print("b: " + Integer.toBinaryString(b)); 
		short s = 0x7fff; // max short hex value 
		print("s: " + Integer.toBinaryString(s)); 
		long n1 = 200L; // long suffix 
		long n2 = 200l; // long suffix (but can be confusing) 
		long n3 = 200; 
		float f1 = 1; 
		float f2 = 1F; // float suffix 
		float f3 = 1f; // float suffix 
		double d1 = 1d; // double suffix 
		double d2 = 1D; // double suffix // (Hex and Octal also work with long)
	} 
} 
/* Output: 
i1: 101111 
i2: 101111 
i3: 1111111 
c: 1111111111111111 
b: 1111111 
s: 111111111111111 
*///:~
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值