1234567891011121314151617181920212223 |
- package com.lc.day06.Inheritance04;
- /**
- * ClassName: Test
- * Package: com.lc.day06.Inheritance04
- * Description:
- *
- * @Author 爱扣钉-陈晨
- * @Create 2023/7/19 16:15
- * @Version 1.0
- */
- public class Test {
- public static void main(String[] args) {
- Student student = new Student("kunkun","IKun大学");
- //name 继承的属性
- student.showInfo();
- //eat 继承方法
- student.eat();
- }
- }
|