编写一个代表学生的Student类
编写一个代表学生的Student类:public class Student{ //1.成员变量 private String name; private int age; //2构造器 //3.成员方法//自我介绍,输出学生名字和年龄 public void intruction(){ System.out.println("我叫" + this.name + ",年龄" +