基本数据类型和引用数据类型图解

基本数据类型:

public class ParamDemo1 {
    public static void main(String[] args) {
        int a=5;
        show(a);
        System.out.println("a="+a);
    }
    public static void show(int a){
        a=8;
    }
}

  基本数据类型图解:

引用数据类型:

public class ParamDemo2 {
    int a=5;

    public static void main(String[] args) {
        ParamDemo2 pd=new ParamDemo2();
        pd.a=10;
        System.out.println("pd.a="+pd.a);
    }
    public static void show(ParamDemo2 pd){
        pd.a=8;
    }
}

  引用数据类型图解:

posted @ 2019-03-18 19:12  T&K  阅读(337)  评论(0编辑  收藏  举报