Test01.java 416 B

123456789101112131415
  1. package com.sf.day06.student;
  2. import com.sf.day06.Student;
  3. public class Test01 {
  4. public static void main(String[] args) {
  5. //创建学生的对象 alt + enter
  6. Student student = new Student();
  7. student.name = "小明";
  8. student.age = 20;
  9. student.sex = 1;
  10. student.height = 186.1;
  11. student.study(student.name);
  12. student.homeWork(student.name);
  13. }
  14. }