首页 > 其他 > 详细

this关键字

时间:2016-11-27 00:26:47      阅读:228      评论:0      收藏:0      [点我收藏+]

this关键字的作用:

  1. 调用类中的属性

  2. 调用类中的方法或构造方法

  3. 表示当前对象


public class Test {

	public static void main(String[] args) {
		
	Person p1=new Person();

	}

}


class Person{
	private String name;
	private char sex;
	
	public Person(){
		this("张爷爷");
	}
	
	public Person(String name){
		this(name,‘男‘);
	}
	
	public Person(String name,char sex){
		this.name=name; //表示当前对象属性
		this.sex=sex; //表示当前对象属性
		this.fight(); //调用本类中的方法
	}
	
	public void fight(){
		System.out.println("呔!"+this.name+"在此,谁敢跟俺一战!");
	}
	
}


this关键字

原文:http://12170190.blog.51cto.com/12160190/1876873

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!