JAVA数据类型自动转换,与强制转换

时间:2022-06-24 12:45:55

一、数据类型自动转换

public class Test{
public static void main(String[] args){
int a = 1;
double b = 1.5;
double a_b_count = a+b; //整型与双精度型相加时,结果会自动转换为双精度型 String c = "凌";
char d = '晨';
char e = '好';
String c_d_e_content = c+d+e; //字符型与字符串型相加时,结果会自动转换为字符串型 System.out.println(a_b_count);
System.out.println(c_d_e_content);
}
}

二、数据类型强制转换

public class Test{
public static void main(String[] args){
int a = (int)10.2; //将双精度类型数据强制转换为整形
double b = (double)10; //将整型类型的数据强制转换为双精度型
System.out.println(a);
System.out.println(b);
}
}

int与double之间可以强制互相转换。

char与String类型之间不能强制互相转换。