java类型转换和练习

时间:2023-02-03 19:05:42

1. 自动类型转换细节

1.  有多种数据类型混合运算时,自动转换成容量最大的数据类型然后再运算

2.  byte、short、char之间不能相互自动转换

3.  当把数据分配给byte时,先判断该数是否在byte范围内,如果可以就赋值

例如: byte b1 = 10;//对 -128-127

4. byte、short、char之间可以计算,在计算时首先转换为int类型

5. boolean不参与自动转换的

6. 自动提升原则:表达式结果类型自动提升为操作数中最大的类型

//自动转换类型使用细节
public class Test4
{
public static void main(String[] args)
{
//有多种数据类型混合运算时,自动转换成容量最大的数据类型然后再运算
int n1 = 10;//ok
//float d1=n1+1.1;//错误,n1+1.1是double类型
double d1=n1+1.1;//对

//int n2 = 1.1;//错误,1.1是double类型

//byte、short、char之间不能相互自动转换
//当把数据分配给byte时,先判断该数是否在byte范围内,如果可以就赋值
byte b1 = 10;//对 -128-127
// int n2 = 1;
// byte b2 = n2;//错误,n2时int类型
//char c1=b1;//错误,byte、short、char之间不能相互自动转换

//byte、short、char之间可以计算,在计算时首先转换为int类型
byte b2 = 1;
byte b3 = 1;
short s1 = 1;
//short s2 = b2+s1;//错误,b2+s1=>int类型
int s2 = b2+s1;//正确
//byte b4 = b2+b3;//错误,b2+b3已经是int类型了

//boolean不参与自动转换的
boolean pass = true;
//int num100 = pass;//错误,boolean不参与自动转换的


//自动提升原则:表达式结果类型自动提升为操作数中最大的类型
byte b5 = 1;
short s3 = 100;
int num200 = 1;
double d100 = 1.1;
double d200 = b5+s3+num200+d100;//结果为double类型
}
}


2. 强制类型转换

//强制类型转换
public class Test4
{
public static void main(String[] args)
{
int n1 = (int)1.9;
System.out.println("n1="+n1);//1,造成精度损失

int n2 = 2000;
byte b1 = (byte)n2;
System.out.println("b1="+b1);//-48,造成数据溢出
}
}

3. 强制类型细节,55

1.强转符号只针对最近的操作数有效,往往使用()提升优先级

//强制类型转换细节
public class Test4
{
public static void main(String[] args)
{
//强转符号只针对于最近的操作数有效,往往会使用小括号提升优先级
//int x = (int)10*3.5+6*1.5;//编译错误, double -> int int x = (int)(10*3.5+6*1.5);
int x = (int)(10*3.5+6*1.5);//(int)44.0 -> 44
System.out.println(x);//44

char c1 = 100; //ok
int m = 100; //ok
// char c2 = m; //错误
char c3 = (char)m; //ok
System.out.println(c3);//100 对应的字符, d 字符
}
}

4. 基本数据类型和String类型(字符串)的转换

1.  将基本类型值+""即可

//基本数据类型和String类型(字符串)的转换
public class Test4
{
public static void main(String[] args)
{
int n1 = 100;
float f1 = 1.1f;
double d1 = 4.5;
boolean b1 = true;
String s1 = n1+"";
String s2 = f1+"";
String s3 = d1+"";
String s4 = b1+"";
System.out.println(s1+" "+s2+" "+s3+" "+s4);
System.out.println(s1);
System.out.println(s2);
System.out.println(s3);
System.out.println(s4);
}
}

5. 将String类型转换成为基本数据类型 57

1.通过基本数据类型的包装类parseXX方法即可

//将String类型转换成为基本数据类型,通过基本数据类型的包装类parseXX方法即可
public class Test4
{
public static void main(String[] args)
{
String s5="123";
int num1=Integer.parseInt(s5);
double num2 = Double.parseDouble(s5);
float num3 = Float.parseFloat(s5);
long num4 = Long.parseLong(s5);
byte num5 = Byte.parseByte(s5);
short num6 = Short.parseShort(s5);
boolean b = Boolean.parseBoolean("true");
System.out.println(num1);//123
System.out.println(num2);//123.0
System.out.println(num3);//123.0
System.out.println(num4);//123
System.out.println(num5);//123
System.out.println(num6);//123
System.out.println(b);//true

//怎么把字符串转成字符,把字符串的第一个字符得到
//s5.charAt(0)意思是得到s5字符串的第一个字符“1”
System.out.println(s5.charAt(0));
}
}

6. 字符串转成数据是的细节 58

像hello这样的字符串不能转换成数据

//字符串转成数据是的细节
public class Test4
{
public static void main(String[] args)
{
String str="123";
int n1 = Integer.parseInt(str);
// String tmp="hello";
// int n3 = Integer.parseInt(tmp);//hello不能转换成数据
System.out.println(n1+1);//124
System.out.println(tmp.charAt(0));//h

int n2 = 123;
String s1 = n2+"";
System.out.println(s1+1);//1231

}
}

7. 小练习

例1

public class Test4
{
public static void main(String[] args)
{
int n1=13;
int n2=17;
int n3 = n1+n2;
System.out.println("n3="+n3);//30
int n4=38;
int n5 = n4-n3;
System.out.println("n5="+n5);//8
}
}

例2

public class Test4
{
public static void main(String[] args)
{
char c1 = '\n';//换行
char c2 = '\t';//制表位
char c3 = '\r';//回车
char c4 = '\\';//输出\
char c5 = '1';//1
char c6 = '2';//2
char c7 = '3';//3
System.out.println(c1);
System.out.println(c2);
System.out.println(c3);
System.out.println(c4);// \
System.out.println(c5);//1
System.out.println(c6);//2
System.out.println(c7);//3
}
}

例3(关于+号的使用)

public class Test5
{
public static void main(String[] args)
{
String book1 = "天龙八部";
String book2 = "很好看";
System.out.println(book1+book2);//天龙八部很好看

char c1 = '男';
//String s1 = c1+"";
char c2 = '女';
System.out.println(c1+c2);//得到男女字符对应的字符码值
System.out.println(c1+""+c2);//男女,但不是字符类型

double price1 = 123.56;
double price2 = 100.11;
System.out.println(price1+price2);//223.670000......
}
}

例4

//姓名 年龄 成绩 性别 爱好

//jack 20 80.9 男 足球

//例4,输出
//姓名 年龄 成绩 性别 爱好
//jack 20 80.9 男 足球
public class Test5
{
public static void main(String[] args)
{
String name = "jack";
int age = 20;
double score = 80.9;
char gender = '男';
String hobby = "足球";
System.out.println("姓名\t年龄\t成绩\t性别\t爱好\n"+name+"\t"
+age+"\t"+score+"\t"+gender+"\t"+hobby);
}
}

java类型转换和练习