package oop;
//学生类
public class Student {
//属性:字段
String name;
int age;
//非静态方法
public void study() {
System.out.println(this.name+"在学习"); //该方法在Demo02中被调用
}
}
对象(两个学生)
package oop;
public class Demo05 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
//类: 抽象的,实列化
//类实列化之后就是返回自己的一个对象
Student student1 = new Student();
Student student2 = new Student();
student1.name="小小";
student1.age=5;
System.out.println(student1.name+",今年"+student1.age+"岁");
student2.name="小fu";
student2.age=5;
System.out.println(student2.name+",今年"+student2.age+"岁");
}
}



