类与对象的关系
类是一种抽象的数据类型,它是对某一类整体描述/定义,但并不能代表某一个具体的事物。
对象是抽象概念的具体实例。
创建与初始化对象
使用new关键字创建对象
使用new关键字创建的时候,除了分配内存空间之外,还会给创建好的对象进行默认的初始化以及对类中构造器的调用。
package oop.demo01.demo02;
//学生类
public class Student {
//属性:字段
String name;//nulll
int age;//0
//方法
public void study(){
System.out.println(this.name+"在学习");
}
}
package oop.demo01.demo02;
//一个项目应该只存在一个main方法
public class Application {
public static void main(String[] args) {
//类是抽象的,需要实例化
//类实例化后会返回一个自己的对象
//sudent对象就是一个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);
}
}
标签:关系,xiaoming,name,对象,xiaohong,System,Student,out
From: https://www.cnblogs.com/sx-xiaoL/p/17417284.html