当前位置: 技术问答>java相关
public Rect(int width,int height){this(0,0,width,height);}
来源: 互联网 发布时间:2017-04-05
本文导语: 如题 public class Rect(){ public int x1,y1,x2,y2; public Rect(int width,int height){this(0,0,width,height);} . . . . } this(0,0,width,height)是什么意思 能详细讲讲这个this吗 | public class Rect { public int x1,y1,x2,y2; p...
如题
public class Rect(){
public int x1,y1,x2,y2;
public Rect(int width,int height){this(0,0,width,height);}
.
.
.
.
}
this(0,0,width,height)是什么意思
能详细讲讲这个this吗
public class Rect(){
public int x1,y1,x2,y2;
public Rect(int width,int height){this(0,0,width,height);}
.
.
.
.
}
this(0,0,width,height)是什么意思
能详细讲讲这个this吗
|
public class Rect
{
public int x1,y1,x2,y2;
public Rect(int width,int height)
{
this(0,0,width,height);
}
public Rect(int a,int b,int c,int d)
{
x1 = a;
y1 = b;
x2 = c;
y2 = d;
}
public static void main(String[] args)
{
Rect a = new Rect(1,2);
System.out.println(a.x1);
System.out.println(a.y1);
System.out.println(a.x1);
System.out.println(a.y1);
}
}
你看看上面这段代码,我想你应该清楚了
{
public int x1,y1,x2,y2;
public Rect(int width,int height)
{
this(0,0,width,height);
}
public Rect(int a,int b,int c,int d)
{
x1 = a;
y1 = b;
x2 = c;
y2 = d;
}
public static void main(String[] args)
{
Rect a = new Rect(1,2);
System.out.println(a.x1);
System.out.println(a.y1);
System.out.println(a.x1);
System.out.println(a.y1);
}
}
你看看上面这段代码,我想你应该清楚了
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。