构造方法中使用this的含义

     今天在构造方法中使用this关键字,还是感觉在原理中弄不明白,this关键字代表本类的这个对象。在构造方法中的使用方式分为两类。

     第一类是使用this调用其它构造函数,这个没什么好说的

	public NodeTree(Context context) throws IllegalArgumentException, IllegalAccessException{

		this(context, null, 0);

	}

    public NodeTree(Context context, AttributeSet attrs, int defStyle) throws IllegalArgumentException, IllegalAccessException {

    	super(context, attrs, defStyle);

        Log.d("TAG", "NodeTree");

        this.context = context;

    	initData();

    	initContent(context,10);

    }

  第二类是使用this关键字为当前对象的各个字段(Field)初始化,还接着以上代码,多次使用了this,写的时候还纳闷当前对象还没有创建完成啊,能不能再这样去addView()(nodetree是继承LinearLayout的)

private void initContent(final Context context,int defaultExpandLevel) throws IllegalArgumentException, IllegalAccessException {

        Log.d("TAG", "initContent");

		// TODO Auto-generated method stub



        mAllNodes = TreeHelper.getSortedNodes(mDatas2, defaultExpandLevel);

        mVisiNodes = TreeHelper.filterVisibleNode(mAllNodes);

    	this.setOrientation(LinearLayout.VERTICAL);

        listView = new ListView(context);

        LinearLayout.LayoutParams params =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.MATCH_PARENT,1);

        listView.setLayoutParams(params);

        this.addView(listView);

        reLayout= new RelativeLayout(context);

        LinearLayout.LayoutParams params1 =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.MATCH_PARENT,6);

        reLayout.setLayoutParams(params1);

        reLayout.setId(0x1234);

        reLayout.setGravity(Gravity.CENTER_VERTICAL);

        FillButtonUtil.fillButtons(context, reLayout);

        this.addView(reLayout);

        mAdapter = new SimpleTreeAdapter<FileBean>(listView, context, this);

		listView.setAdapter(mAdapter);

	}

  事实上,还是对java虚拟机的工作过程不太熟悉,在创建对象(new)时,JM首先会在方法区创建申请一块内存空间,其中有个对象头,储存对象的类信息、地址信息、GC回收分代等信息,这时候只是个空对象。之后才会进入到构造方法,为当前对象的各个字段或者说各方面的属性作初始化,这个过程中去为对象添加一个孩子是没有什么问题的,在内存中的表现就是对象的内存空间会多出一个指针记录孩子的相关信息。

 

你可能感兴趣的:(this)