关于JAVA的引用类型传值.

public UIPageResponse search(UIPage page,Map<String, String> params){

    Page _page = page.toPage();

    try {

        applyLoanService.getList(_page,params);

    } catch (Exception e) {

        e.printStackTrace();

    }

    if(_page.getmList==null){

        System.out.println("为空");

    }

}


public Page getList(Page page, Map<String, String> params) throws Exception {

    useDefaultDao();

    StringBuffer sb = new StringBuffer();

    List<String> sqlParams = new ArrayList<String>();


    sb.append(" SELECT * ").append(" FROM applyloan ").append(" WHERE 1=1 ");

    try{

        dataDao.queryMap(page, sb.toString(), sqlParams.toArray());

    }catch (Exception e) {

        throw new Exception("getList()查询异常,描述:" + e.toString());

    }

    if(page.getmList!=null){

        System.out.println("不为空");

    }

    return page;

}


结果是这两句话都能输出.

为什么我把_page作为一个引用类型传递到getList()方法,按照引用类型址传递,最后返回的page对象在search()方法即使应该没用_page = applyLoanService.getList(_page,params); 也应该会被改变才对,不是这样的吗.?


慕容森
浏览 578回答 2
2回答

LEATH

方法参数传递都按值传递对于基本类型,传递原始值对于对象类型,传递其指向的对象的地址值多个同类型不同的变量可以指向同一个对象,但是其中任何一个变量被重新赋值,也就是指向一个新的对象时,不影响其它变量的指向方法定义的形参,在调用的发生的时候就是这个方法体的局部变量,方法调用后这个变量将会从执行栈中清楚掉,但是并不表示其指向的对象也被清楚掉,对象的清除需要通过GC自动进行请注意[1]处的操作,就可以重现你的问题import java.util.ArrayList;import java.util.List;class Page {&nbsp; &nbsp; public List<String> getMList=new ArrayList<String>();}/**&nbsp;* @author akong&nbsp;*&nbsp;*/public class PageTest {&nbsp; &nbsp; public Page getList(Page somePage){&nbsp; &nbsp; &nbsp; &nbsp; somePage.getMList=null;&nbsp; &nbsp; &nbsp; &nbsp; somePage=new Page();//[1]变量被重新指向一个新的对象,但是不影响原对象&nbsp; &nbsp; &nbsp; &nbsp; if(somePage.getMList!=null){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("is not empty");&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; return somePage;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; }&nbsp; &nbsp; /**&nbsp; &nbsp; &nbsp;* @param args&nbsp; &nbsp; &nbsp;*/&nbsp; &nbsp; public static void main(String[] args) {&nbsp; &nbsp; &nbsp; &nbsp; // TODO Auto-generated method stub&nbsp; &nbsp; &nbsp; &nbsp; PageTest somePageTest=new PageTest();&nbsp; &nbsp; &nbsp; &nbsp; Page somePageA=new Page();&nbsp; &nbsp; &nbsp; &nbsp; somePageTest.getList(somePageA);&nbsp; &nbsp; &nbsp; &nbsp; if(somePageA.getMList==null){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("empty");&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }}

烙印99

首先,这个getList(Page page, Map<String, String> params)根本就不会改变_page。&nbsp;其次,关键在这段代码Page _page = page.toPage();,toPage()里面到底做的是什么操作。你好好看看自己的toPage()方法吧。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java