package homework.c260720; /** * @author WanJl * @version 1.0 * @title StudentTest * @description * @create 2026/7/21 */ public class StudentTest { public static void main(String[] args) { Student s=new Student(); s.setName("张三"); s.setAge(25); s.setClassName("J260713"); s.showInfo(); s.study("Java"); } }