StudentTest.java 374 B

1234567891011121314151617181920
  1. package homework.c260720;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title StudentTest
  6. * @description
  7. * @create 2026/7/21
  8. */
  9. public class StudentTest {
  10. public static void main(String[] args) {
  11. Student s=new Student();
  12. s.setName("张三");
  13. s.setAge(25);
  14. s.setClassName("J260713");
  15. s.showInfo();
  16. s.study("Java");
  17. }
  18. }