this关键字

xiaoxiao2021-02-28  93

this关键字:

代指将来本类的对象(类中声明的变量/全局的)

public class ChPerson { public String name; public char sex; /** * 无参函数 * 系统会默认给每个类创建的函数 */ public ChPerson(){ } /** * 有参构造 * @param name * @param sex */ public ChPerson(String name,char sex){ //this关键词 this.name = name; this.sex = sex; } public void show(){ System.out.println("我的姓名是:"+name); System.out.println("我的性别是:"+sex); } }

转载请注明原文地址: https://www.6miu.com/read-56953.html

最新回复(0)