Java作业求帮助 编写一个Java程序,在程序中定义一个PersonB类,定义一个P
Java作业求帮助编写一个Java程序,在程序中定义一个PersonB类,定义一个PersonB的子类StudentB类,再定义一个C2类,在main()方法中,生成St...
Java作业求帮助
编写一个Java程序,在程序中定义一个PersonB类,定义一个PersonB的子类StudentB类,再定义一个C2类,在main()方法中,生成StudentB类的两个对象。
//C2.java
class PersonB
{ String name ;
int age;
public PersonB()
{
System.out.println(“PersonB()被调用”);
}
public PersonB(String newName)
{
name = newName;
System.out.println(“PersonB(String newName)被调用”);
}
public void introduce( )
{
System.out.println(“我是”+name+”,今年”+age+”岁”);
}
}
class StudentB extends PersonB
{
【代码1】 //创建一个参数为空的StudentB类构造方法,能显示“StudentB()
被调用”
public StudentB(String newName,int newAge)
{
【代码2】 //调用父类的public PersonB(String newName)类构造方法,传
入newName参数,提示使用关键词super进行调用
【代码3】 //将newAge赋值给age属性
}
}
class C2
{
public static void main(String []args)
{
StudentB s1 = new StudentB();
StudentB s2 = new StudentB(“张三”,19);
【代码4】 //调用s2的 introduce方法
}
}
求代码1234 展开
编写一个Java程序,在程序中定义一个PersonB类,定义一个PersonB的子类StudentB类,再定义一个C2类,在main()方法中,生成StudentB类的两个对象。
//C2.java
class PersonB
{ String name ;
int age;
public PersonB()
{
System.out.println(“PersonB()被调用”);
}
public PersonB(String newName)
{
name = newName;
System.out.println(“PersonB(String newName)被调用”);
}
public void introduce( )
{
System.out.println(“我是”+name+”,今年”+age+”岁”);
}
}
class StudentB extends PersonB
{
【代码1】 //创建一个参数为空的StudentB类构造方法,能显示“StudentB()
被调用”
public StudentB(String newName,int newAge)
{
【代码2】 //调用父类的public PersonB(String newName)类构造方法,传
入newName参数,提示使用关键词super进行调用
【代码3】 //将newAge赋值给age属性
}
}
class C2
{
public static void main(String []args)
{
StudentB s1 = new StudentB();
StudentB s2 = new StudentB(“张三”,19);
【代码4】 //调用s2的 introduce方法
}
}
求代码1234 展开
2个回答
展开全部
class PersonB
{
String name ;
int age;
public PersonB()
{
System.out.println("PersonB()被调用");
}
public PersonB(String newName)
{
name = newName;
System.out.println("PersonB(String newName)被调用");
}
public void introduce( )
{
System.out.println("我是"+name+",今年"+age+"岁");
}
}
class StudentB extends PersonB
{
// 【代码1】 //创建一个参数为空的StudentB类构造方法,能显示“StudentB() 被调用”
public StudentB(){
System.out.println("StudentB() 被调用");
}
public StudentB(String newName,int newAge)
{
// 【代码2】 //调用父类的public PersonB(String newName)类构造方法,传入newName参数,提示使用关键词super进行调用
super(newName);
// 【代码3】 //将newAge赋值给age属性
super.age = newAge;
}
}
class C2
{
public static void main(String []args)
{
StudentB s1 = new StudentB();
StudentB s2 = new StudentB("张三",19);
// 【代码4】 //调用s2的 introduce方法
s2.introduce();
}
}
纯手打,采纳采纳!!!!!!!!11
{
String name ;
int age;
public PersonB()
{
System.out.println("PersonB()被调用");
}
public PersonB(String newName)
{
name = newName;
System.out.println("PersonB(String newName)被调用");
}
public void introduce( )
{
System.out.println("我是"+name+",今年"+age+"岁");
}
}
class StudentB extends PersonB
{
// 【代码1】 //创建一个参数为空的StudentB类构造方法,能显示“StudentB() 被调用”
public StudentB(){
System.out.println("StudentB() 被调用");
}
public StudentB(String newName,int newAge)
{
// 【代码2】 //调用父类的public PersonB(String newName)类构造方法,传入newName参数,提示使用关键词super进行调用
super(newName);
// 【代码3】 //将newAge赋值给age属性
super.age = newAge;
}
}
class C2
{
public static void main(String []args)
{
StudentB s1 = new StudentB();
StudentB s2 = new StudentB("张三",19);
// 【代码4】 //调用s2的 introduce方法
s2.introduce();
}
}
纯手打,采纳采纳!!!!!!!!11
展开全部
class StudentB extends PersonB
{
//创建一个参数为空的StudentB类构造方法,能显示“StudentB()被调用”
public StudenB(){
System.out.println("StudentB()被调用");
}
public StudentB(String newName,int newAge)
{
//调用父类的public PersonB(String newName)类构造方法,传
//入newName参数,提示使用关键词super进行调用
super(newName);
//将newAge赋值给age属性
age=newAge;
}
}
class C2
{
public static void main(String []args)
{
StudentB s1 = new StudentB();
StudentB s2 = new StudentB(“张三”,19);
//调用s2的 introduce方法
s2.introduce( );
}
}
{
//创建一个参数为空的StudentB类构造方法,能显示“StudentB()被调用”
public StudenB(){
System.out.println("StudentB()被调用");
}
public StudentB(String newName,int newAge)
{
//调用父类的public PersonB(String newName)类构造方法,传
//入newName参数,提示使用关键词super进行调用
super(newName);
//将newAge赋值给age属性
age=newAge;
}
}
class C2
{
public static void main(String []args)
{
StudentB s1 = new StudentB();
StudentB s2 = new StudentB(“张三”,19);
//调用s2的 introduce方法
s2.introduce( );
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询