数据类型拓展
Posted tzc941243753
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据类型拓展相关的知识,希望对你有一定的参考价值。
public class Demo3
public static void main(String[] args)
//整数拓展: 进制 二进制0b 十进制 八进制0 十六进制0x
int i = 10;
int i2 =010; //八进制
int i3 = 0x10; //十六进制
System.out.println(i);
System.out.println(i2);
System.out.println(i3);
//浮点数拓展 银行业务怎么表示 BigDecimal类
//float
//double
//最好完全避免使用浮点数比较
float f = 0.1f; //0.1
double d = 1.0/10; //0.1
System.out.println(f==d); //false
System.out.println(f);
System.out.println(d);
//字符拓展
char c1 = \'a\';
char c3 = \'A\';
char c2 = \'中\';
System.out.println(c1);
System.out.println(c2);
System.out.println((int)c1);//强制换行
System.out.println((int)c2);//强制换行
System.out.println((int)c3);//强制换行
//所有的字符本质还是数字
//编码 unicode 表:97=a 2字节 65536 Excel 2^16=65536
//U0000 UFFFF
char c4 = \'\\u0061\';
System.out.println(c4);//a
//转义字符 \\t
System.out.println("hello\\tworld");
String sa=new String("hello world");
String sb=new String("hello world");
String sc = "hello wordld";
String sd = "hello wordld";
System.out.println(sa==sb);//引用数据类型比较地址
System.out.println(sc==sd);//基本数据类型比较内容
//布尔值扩展
boolean flag = true;
if(flag==true)//新手
if(flag)//老手
public static void main(String[] args)
//整数拓展: 进制 二进制0b 十进制 八进制0 十六进制0x
int i = 10;
int i2 =010; //八进制
int i3 = 0x10; //十六进制
System.out.println(i);
System.out.println(i2);
System.out.println(i3);
//浮点数拓展 银行业务怎么表示 BigDecimal类
//float
//double
//最好完全避免使用浮点数比较
float f = 0.1f; //0.1
double d = 1.0/10; //0.1
System.out.println(f==d); //false
System.out.println(f);
System.out.println(d);
//字符拓展
char c1 = \'a\';
char c3 = \'A\';
char c2 = \'中\';
System.out.println(c1);
System.out.println(c2);
System.out.println((int)c1);//强制换行
System.out.println((int)c2);//强制换行
System.out.println((int)c3);//强制换行
//所有的字符本质还是数字
//编码 unicode 表:97=a 2字节 65536 Excel 2^16=65536
//U0000 UFFFF
char c4 = \'\\u0061\';
System.out.println(c4);//a
//转义字符 \\t
System.out.println("hello\\tworld");
String sa=new String("hello world");
String sb=new String("hello world");
String sc = "hello wordld";
String sd = "hello wordld";
System.out.println(sa==sb);//引用数据类型比较地址
System.out.println(sc==sd);//基本数据类型比较内容
//布尔值扩展
boolean flag = true;
if(flag==true)//新手
if(flag)//老手
Java拓展(数据类型及其大小)
以上是关于数据类型拓展的主要内容,如果未能解决你的问题,请参考以下文章