Java无法将类中的构造器应用到给定的类型
classPerson{publicStringname;publicPerson(Stringname){this.name=name;System.out.print...
class Person{ public String name; public Person (String name){ this.name=name; System.out.println("the Person of Java"); } } class Student extends Person{int age; public Student(String name,int age){ super(name); this.age=age;}public void show(){ System.out.println("the Student of person");}} public class App_555 { public static void main(String[] args) { Person per=new Person(" mr z"); Student stu=new Student("mrz","24"); stu.show(); }}
展开
展开全部
Student构造器的参数类型是String 和 int
而这里mian方法中Student stu = new Student("mrz", "24");给的参数却是两个String类型,当然会报错了。
根据你的本意,应该改成Student stu = new Student("mrz", 24);
而这里mian方法中Student stu = new Student("mrz", "24");给的参数却是两个String类型,当然会报错了。
根据你的本意,应该改成Student stu = new Student("mrz", 24);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-19
展开全部
Student stu=new Student("mrz", 24);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询