Test.java 463 B

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