1 问题
定义一个父类,用子类去继承父类所拥有的方法、定义属性,然后使用测试文件实现子类输出父类的方法信息,属性等。
2 方法
2.1 定义一个名为Person的父类:
2.2 定义一个名为Student的子类,并令其继承父类:
2.3 定义父类的属性、方法:
2.4定义子类的属性,以及输出父类的属性:
2.5利用实例化一个类来输出:
一:package zuoyeshiyan1; public class Person{ String name; int age; String numble; void fanhui(){ } Person(){ } } 二:package zuoyeshiyan1; public class Student extends Person{ int snumble; String school; void fanhui(){ System.out.println("姓名:" + name); System.out.println("年龄:" + age); System.out.println("身份证号:" + numble); System.out.println("学号:" + snumble); System.out.println("学校:" + school); } Student(String name,int age,String numble,int snumble, String school){ this.name = name; this.age = age; this.numble = numble; this.snumble = snumble; this.school = school; } } 三:package zuoyeshiyan1; public class text5 { public static void main(String[] args) { Student lisi = new Student("李四",18,"165465465",54654,"四川旅游学院"); lisi.fanhui(); } } |
3 结语文章来源:https://www.toymoban.com/news/detail-475593.html
针对于继承类以及类中的方法和属性,首先应该创建父类和子类的继承,然后是定义类属性和方法,最后输出返回它的内容。单单从目前来继承类属于比较基础的方法,之后还会在此基础上实现更多延伸,例如分块利用,比所有代码写在一起更加方便,整洁。文章来源地址https://www.toymoban.com/news/detail-475593.html
到了这里,关于继承类的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!