public class Main{
    public static void main(String[] args){
        System.out.println("The size of short is "+Short.SIZE/8+" bytes.");
        System.out.println("The size of int is "+Integer.SIZE/8+" bytes.");
        System.out.println("The size of long is "+Long.SIZE/8+" bytes.");
        System.out.println("The size of long long is "+Long.SIZE/8+" bytes.");
    }
}

知识点:1.求数据类型字节大小时,要使用Short.SIZE/8,Integer.SIZE/8,Long.SIZE/8,Long.SIZE/8等,原因为Short.SIZE表示的是所占空间的大小即所占位大小,而字节大小为位大小/8。
2.注意求int型字节大小为Integer,而不是Int.
3.注意各个数据类型首字母要大写,而且SIZE要大写。
4.使用System.out.println()时,会自动在末尾加上'\n'。