Day03

类型转换

public class Demo3 {
     
    public static void main(String[] args) {
     
        int i = 128;
        double b =i; //内存溢出
        //强制转换   (类型)变量名    高--低
        //自动转换    低--高
        //低-------------------------→高
        //byte,short,char,→  int  →  long  →  float  →  double
        /*
        注意点
        1.不能对布尔值进行转换
        2,不能把对象类型转换为不相干的类型
        3,在把高容量转换到低容量的时候,强制转换
        4,转换的时候可能存在内存溢出,或者精度问题!

         */
        System.out.println(i);
        System.out.println(b);
        System.out.println("============================");
        System.out.println((int)25.7);
        System.out.println((int)-20.27f);
        System.out.println("============================");
        char c = 'a';
        int d = c+1;
        System.out.println(d);
        System.out.println((char)d);
        System.out.println("============================");
        int money = 10_0000_0000;
        int years = 20;
        int total = money * years;  //-1474836480,计算溢出
        System.out.println(total);
        long total2 = money * years;//默认是Int,转换之前已经存在溢出问题了。
        long total3 = money * ((long)years);
        System.out.println(total3);

    }
}

变量的命名规范

1.所有的变量、方法、类名:见名知意

2.类成员变量:首字母小写和驼峰原则:monthSalary 除了第一个单词以外,后面的单词首字母大写 lastname lastName

3.局部变量:首字母小写和下划线:MAX_VALUE

4.类名:首字母大写和驼峰原则:Man,GoodMan

5.方法名:首字母小写和驼峰原则:run(),runRun()

public class Demo4 {
     
    public static void main(String[] args) {
     
        //注意书写规范
        int a = 1;
        int b = 2;
        int c = 3;
        String name = "YG";
        char x = 'X';
        double pi =3.14;
    }
}

public class Demo5 {
     
    //类变量 static
    static double salary = 2500;
    //属性:变量
    //实例变量:从属于对象;如果不自行初始化,这个类型的默认值 0 0.0
    //布尔值:默认是false
    //除了基本的类型,其余默认值都是null
    String name;
    int age;


    //mian方法
    public static void main(String[] args) {
     

        //局部变量;必须声明和初始化值
        int i = 10;
        System.out.println(i);
        //变量类型  变量名字 == new Demo5();
        Demo5 demo5 = new Demo5();
        System.out.println(demo5.age);
        System.out.println(demo5.name);

        //类变量 static
        System.out.println(salary)
    }
    //其他方法
    public void add(){
     

    }
}
public class Demo6 {
     
    //修饰符,不存在先后顺序
    //final代表常量
    //double是八大基本数据类型
    //static是类变量
    static final double PI = 3.14;
    //final static double PI = 3.14;
    public static void main(String[] args) {
     
        System.out.println(PI);
    }
}

你可能感兴趣的:(Day03)