摘要:
java是强类型语言,所以有些运算需要用到类型转换。 精度 低 高 byte,short,char,int,long,float,double 运算中,不同类型先转换为同一类型,再计算。 例如: 1 public class data_cast { 2 public static void main 阅读全文
摘要:
public class data_formpro { public static void main(String[] args) { // // 数字拓展 // int i = 10; // int i1 = 0b10; //二进制0b // int i2 = 010; //八进制0 // in 阅读全文