欢迎光临
我们一直在努力

谈谈JAVA中的调用方式-JSP教程,Java技巧及代码

建站超值云服务器,限时71元/月

很多书籍都说java支持传引用调用的方式,类似于c++中的person &a引用调用,而近来编程遇到一系列问题让我对此产生了怀疑,于是将这些方法一一列出,我们来一起看看java中的调用方式:

  看下面的程序:

 class person {

     private string name;//姓名

    private string sex;//性别

    public person(string x, string y) {
        this.name = x;
        this.sex = y;
    }

    public void setstatus(string x, string y) {
        this.name = x;
        this.sex = y;

    }

    public string tostring() {

        return name + sex;

    }

    //  -----交换普通对象-----
    public static void changeref(person tmpx, person tmpy) {
        //交换tmpx和tmpy对象
        person swapref = tmpx;
        tmpx = tmpy;
        tmpy = swapref;
//        system.out.println(“在方法中交换的结果: refa =” + tmpx.tostring());
//        system.out.println(“在方法中交换的结果: refb =” + tmpy.tostring());
    }

    // ----- 交换数组对象-----
    public static void changearrayref(person[] x, person[] y) {

        //交换数组对象
        person swaparrayref = x[x.length-1];
        x[x.length-1] =y[x.length-1];
        y[x.length-1] = swaparrayref;

    }
    

    //-----交换数组-----
    public static void changearray(int[] x,int[] y) {
 
       int[] tmp =x;       
       x = y; 
       y = tmp;
       
       
    }
    

}

public class demo {

    public static void main(string[] args) {
        
        //-------建立并构造两个对象---------
        person refa = new person(“张三”, “男”);
        person refb = new person(“李四”, “男”);

        //交换refa对象和refb对象
        person.changeref(refa, refb);
        //从交换结果中看出,实际对象并未交换
        system.out.println(“在主函数中交换的结果 refa = ” + refa.tostring());
        system.out.println(“在主函数中交换的结果 refb = ” + refb.tostring());
                
        //-------建立两个对象数组----------
        person[] arraya = new person[1];
        person[] arrayb = new person[1];
        
        //分别构造数组对象
        arraya[0] = new person(“王五”,”男”);
        arrayb[0] = new person(“赵六”,”男”);
         
        /*数组对象为null时,不能设置其值,必须先构造它(即调用构造函数),再用其它方法设置其值
      */
     
        system.out.println(’\n’+”数组对象交换前的结果 arraya = ” + arraya[0].tostring());
        system.out.println(“数组对象交换前的结果 arrayb = ” + arrayb[0].tostring());
        //交换这两个数组对象
        person.changearrayref(arraya, arrayb);
        system.out.println(“-交换后的结果 arraya = ” + arraya[0].tostring());
        system.out.println(“-交换后的结果 arrayb = ” + arrayb[0].tostring());

        //-------建立两个普通数组---------
        int[] a = new int[2];
        int[] b = new int[2];
   
        //给数组个元素赋值
        for(int i =0;i<a.length;i++){
            a[i] = i;
            b[i] = i+1;
        }    
        
        system.out.println(’\n’+”数组交换前 inta[0] = ” + a[0]);
        system.out.println(“数组交换前 intb[0] = ” + b[0]);
        
        //交换数组
        person.changearray(a,b);        
  
        system.out.println(“-交换后的结果 inta[0] = ” + a[0]);
        system.out.println(“-交换后的结果 intb[0] = ” + b[0]);
   
        
    }
}

  从程序执行的结果来看:在交换两个对象时,仅仅改变了对象句柄的指向,而没有改变对象内容,因此方法参数为对象时,并不交换实际内容,而是交换了拷贝内容。
   
  数组对象有点奇怪,在形参中交换了,实参也反应出来。

  数组和普通数据类型一样,形参的改变,不会反应到实参中来。

  对象也一样,形参改变了,实参一样不会反应出来。

  小结一下:
  1、方法可以修改对象参数的状态
  2、方法不能让对象参数指向新的对象
  3、方法不能修改基本类型(int、byte等)的参数 

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 谈谈JAVA中的调用方式-JSP教程,Java技巧及代码
分享到: 更多 (0)