以类的方式组织代码,以对象的组织(封装)数据
package oop.demon01.demon02; // 学生类(抽象模板) public class Student { //属性:字段 String name;//没赋值之前默认为null int age;// 没赋值之前默认为0 //方法 public void study(){ //this 代表当前这个类 System.out.println(this.name+"在学习"); } } -------------------------------------------------------------------------------------------------------- package oop.demon01.demon02; // 一个项目应该只存在一个main方法 public class Application { public static void main(String[] args) { // 类:抽象的,需要实例化 // 类实例化后会返回自己的对象 // student对象就是一个Student类的具体实例 //Student student=new Student(); Student xiaoming=new Student(); Student xiaohong=new Student(); xiaoming.name="小明"; xiaoming.age=3; System.out.println(xiaoming.name); System.out.println(xiaoming.age); xiaohong.name="小红"; xiaohong.age=3; System.out.println(xiaohong.name); System.out.println(xiaohong.age); } }
学习内容源自视频:b站狂神说Java