类与对象的创建

 

 

 

 1 package oop.demo02;
 2 //创建一个学生类,类中只有属性和方法
 3 public class Student {
 4     //属性:字段
 5     String name;//null
 6     int age;//0
 7     //方法
 8     public void study(){
 9         System.out.println(this.name + "在学习!");
10     }
11 
12 }
 1 package oop.demo02;
 2 //一个项目应该只存一个main方法
 3 public class Application {
 4 
 5     public static void main(String[] args) {
 6 
 7         //类是抽象的,需要实例化。
 8         //类实例化之后,会返回一个自己的对象。
 9         //student 对象就是一个Student类的具体实例!
10         Student student = new Student();
11         Student xiaoming = new Student();
12         Student yy = new Student();
13         xiaoming.name = "小明";
14         xiaoming.age = 18;
15         System.out.println(xiaoming.name);//小明
16         System.out.println(xiaoming.age);//18
17 
18         System.out.println(yy.name);//null
19         System.out.println(yy.age);//0
20     }
21 }

 

posted on 2022-09-12 00:56  一枚努力学习的小白  阅读(16)  评论(0编辑  收藏  举报