1.

类:

大驼峰命名法:GoodStudent

方法,函数,变量:

小驼峰命名法:firstBlood

 

2.类型转换

 

byte 不可以转为char

 

 3.强制类型转换

public class Tpyeconvet{
    public static void main(String[] args){
        double a = 10;
        System.out.println(a); //输出会为10.0
        byte b = 10;
        short t = b;
        //强制类型转换
        int k = (int)88.88;
        System.out.println(k);//输出为88   会有数据的丢失
    }
}

 

 

Posted on 2022-05-16 15:25  LutixiaGit  阅读(23)  评论(0编辑  收藏  举报