//学生类 public class Student { //属性:字段 String name; int age; //方法 public void study(){ System.out.println(this.name+"在学习!"); }
public class Application { public static void main(String[] args) { //类:抽象的,实例化 //类实例化后会返回一个自己的对象! //student对象就是一个Student类的具体实例! Student s1 = new Student(); Student s2 = new Student(); s1.name = "小明"; s1.age = 15; System.out.println(s1.name); System.out.println(s1.age); System.out.println(s2.name); System.out.println(s2.age); }
通过在学生类中给抽象的学生来定义他的属性,在main方法里在创建实例,然后给实例在学生类中的属性赋值。