package mycode.demo1; // 类(Student)的创建 public class Student { // 属性:成员方法 String name; int age; // 特征:成员方法 public void run(){ System.out.println("喜欢运动!"); } public void reat(){ System.out.println("喜欢吃饭!"); } }
package mycode.demo1; // 对象(Student)的创建与访问 public class StudentDemo { public static void main(String[] args) { // 创建对象就是实例化的过程 Student student = new Student(); // 对象属性的赋值 student.age = 18; student.name = "wzz"; // 输出:对象属性的赋值后的结果 System.out.println(student.name+",今年"+student.age+"岁!"); // 输出:对象的行为 student.run(); student.eat(); } }
程序运行效果
wzz,今年18岁! 喜欢运动! 喜欢吃饭!