java。 我看书上说this能在无参构造函数调用有参构造函数,但是只是粗略的介绍了下。 想问的问
java。我看书上说this能在无参构造函数调用有参构造函数,但是只是粗略的介绍了下。想问的问题的问题是①调用的格式是怎么样的②如果有多个参数不同的构造函数,this调用...
java。 我看书上说this能在无参构造函数调用有参构造函数,但是只是粗略的介绍了下。 想问的问题的问题是①调用的格式是怎么样的②如果有多个参数不同的构造函数,this调用的是哪一个? 最好能代码具体说一下,谢谢~
展开
5个回答
2014-07-07 · 知道合伙人数码行家
关注
展开全部
您好,提问者:
1、调用构造函数格式:this();//无参数 this(xx);//有参数。
2、如果有多个构造函数,调用根据参数而决定的。
public class Person{
public Person(){//无参数的构造函数
System.out.println("this()");
}
public Person(String name){ //有一个参数的构造函数
System.out.println("this("+name+")");
}
public Person(String name, int age){ //两个参数的构造函数
System.out.println("this("+name+","+age+")");
}
public static void getThis(){ //测试方法
//this.();调用无参的
this.("张三"); //调用一个参数的
this.("小童鞋_成er",23); //调用有两个参数的构造方法
}
public static void main(String[] args){
getThis();
}
}
展开全部
调用格式:this.有参构造函数(参数)--> this.Test(1,2,3);
多个构造函数调用:根据参数类型和数量匹配-->比如现有两个有参数的构造函数和一个无参构造函数:Test(int i,int j) {...} ,Test(int i,int j,int k) {...} ,Test() {...}
无参构造函数里调用情况如下:
public Test() {
this.Test(1,2);---调用的是只要两个参数的Test(int i,int j) {...}
//this.Test( 1,2,3) ; --调用的是三个参数的Test(int i,int j,int k) {...}
}
其他的:其实具体调用哪个函数,是根据参数类型和数量区匹配的,和返回值没有关系!
--希望对你有帮助!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Person{
private String name;
private int age;
private String gender;
Person(){
this("zhangsan");
}
Person(String name){
this(name,20);
this.name = name;
System.out.println(name);
}
Person(String name,int age){
this(name,age,"man");
this.name = name;
this.age = age;
System.out.println(name+"--"+age);
}
Person(String name,int age,String gender){
this.name = name;
this.age = age;
this.gender = gender;
System.out.println(name+"--"+age+"--"+gender);
}
public static void main(String args[]){
Person p = new Person();
System.out.println(p.name);
System.out.println(p.age);
System.out.println(p.gender);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class MyClass{
public MyClass(){
this("未设置");
}
public MyClass(String name){
this(name,-1);
}
public MyClass(String name,int age){
this.name=name;
this.age=age;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
调用格式是:this.Method(1,2);
调用哪一个根据你传的参数符合哪一个决定。
调用哪一个根据你传的参数符合哪一个决定。
更多追问追答
追问
用this个(.)加上构造函数?
追答
是的,this代表这个类。有时候有多个this,就会打叉叉给你,这时候你需要打上类的全名点this再点啥啥啥的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询