Java数据类型

这篇博客探讨了Java中的基本数据类型,包括整型、浮点型和字符型的使用。示例代码展示了如何声明和操作这些类型,如`int`、`long`、`float`和`double`。此外,还讨论了字符`char`的使用,包括转义字符和ASCII值。
摘要由CSDN通过智能技术生成

在这里插入图片描述

//int_details
public class intDetails{
	public static void main(String[] args) {
		int n1 = 1;
		int n2 = 1l;	//错误
		long n3 = 1l;
	}
}

在这里插入图片描述

public class floatDetail {
	public static void main(String[] args) {
		float n1 = 1.2f;
		double n2 = 1.2;
		double n3 = .123;
		System.out.println(n3);
		//n4 and n5 not equal
		double n4 = 2.7;
		double n5 = 8.1 / 3;
		System.out.println(n4); 
		System.out.println(n5);
	}
}

在这里插入图片描述
在这里插入图片描述

//show char
public class charDetail {
	public static void main(String[] args) {
		char c1 = 'a';
		char c2 = '\t';		//Escape characters can be used;
		//char c3 = '方';	//Chinese can be used;  will take two char
		char c4 = 97;
		System.out.println(c1);
		System.out.println(c2);
		//System.out.println(c3);
		System.out.println(c4);
		System.out.println((int)c1);
		char c5 = 38889;
		System.out.println(c5);
		//Can perform digital operations
		System.out.println('a' + 10);
		//what to output? check the ASCII table;
		char c6 = 'b' + 1;
		System.out.println(c6); 
		System.out.println((int)c6);
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值