1.

计算机存储设备的最小信息单元:位 (bit)通常用“b”表示

计算机最小的存储单元为:字节(byte)通常用"B”表示,

1B=8bit,字节是由连续的8个位组成的

1KB = 1024B 

1MB = 1024KB 

1GB = 1024MB

1KB=2^10B,抽去单位B,则1K=2^10,
1M=2^20
1G=2^30
1T=2^40
1K=2^10 

 

2.数据类型

 

内存占用(字节)情况

 

 

 

 使用

public class bianliang{
    public static void main(String[] args){
        int a = 10;
        System.out.println(a);
    }
}

 注意事项:

变量需要初始化

变量定义时候不能超过范围(long  默认是int,如果超过需要在初始化值后面+ L,同理,float 默认是double需要+  F)

public class bianliang{
    public static void main(String[] args){
        int a = 10;
        System.out.println(a);
        long b = 100000000000000L;
        System.out.println(b);
        float c = 3.1415F;
        System.out.println(c);
    }
}

 

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