简单JAVA问题。。帮忙给下具体JAVA语言。。谢谢
- 提问者网友:富士山上尢
- 2021-05-09 20:25
- 五星知识达人网友:第四晚心情
- 2021-05-09 21:59
public class Test{
public Test(){
System.out.println("对象已创建");
}
public Test(String str){
System.out.println(str);
}
public static void main(String[] args){
Test test = new Test();
test = new Test("Sambow");
}
}
- 1楼网友:低音帝王
- 2021-05-09 23:33
class overLoad //重载构造函数示例 { public overLoad() //不带参数的构造函数 { System.out.println("对象已创建!"); } public overLoad(String str) //带String类型参数的构造函数 { System.out.println(str); } }
public class overLoadTest //主测试测试 { public static void main(String[] s) { overLoad T1 =new overLoad(); overLoad T2 =new overLoad("带String类型参数的构造函数!"); } }
- 2楼网友:醉吻情书
- 2021-05-09 23:05
public class text {
//无参数的构造函数 public text() { System.out.println("初始化无参数构造函数"); } //有参数的构造函数 public text(String str) { System.out.println("您传入的参数是有参构造函数 参数是"+str); } public static void main(String[] args) { text t = new text(); text t1 = new text("java"); } }运行结果是
初始化无参数构造函数 您传入的参数是有参构造函数 参数是java