this的使用、静态代码块与实例代码块

this的使用、静态代码块与实例代码
this的使用 1)this()指代一个被定义的构造方法
2)只存在于构造方法中
3)它必须是构造方法中的第一条语句,如果不是,会报下面错误:
call to this must be first statement in constructor
它必须是构造方法中的第一条语句
class Date
{
private int year;
private int month;
private int day;

public Date()
{
this(1999, 1, 1);
}

public Date(int year,int month,int day)
{
this.year = year;
this.month = month;
this.day = day;
}

public void setYear(

this的使用、静态代码块与实例代码块最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/29190.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>