类与对象的关系
-
类是一种抽象的数据类型,它是对某一类事物整体描述/定义,但是并不能代表某一 个具体的事物
动物、植物、手机、电脑....
Person类、 Pet类、Car类等, 这些类都是用来描述/定义某一类具体的事物应该具备的特点和行为
-
对象是抽象概念的具体实例
张三就是人的一个具体实例,张三家里的旺财就是狗的一个具体实例。
能够体现出特点,展现出功能的是具体的实例,而不是一个抽象的概念.
创建与初始化对象
-
使用new关键字创建对象
-
使用new关键字创建的时候,除了分配内存空间之外,还会给创建好的对象进行默认的初始化以及对类中构造器的调用。
-
类中的构造器也称为构造方法,是在进行创建对象的时候必须要调用的。并且构造器有以下两个特点:
a. 必须和类的名字相同
b. 必须没有返回类型,也不能写void
-
构造器必须要掌握
===============================================================================
代码演示
创建Student类
package com.tea.Demo02;
//学生类
public class Student {
//属性:字段
String name;
int age;
//方法
public void study(){
System.out.println(this.name+"同学在学习");
}
}
在主类中调用方法
package com.tea.Demo02;
public class Application {
public static void main(String[] args) {
//类:抽象的,实例化
//类实例化后会返回一个自己的对象
//对象
Student xiaoming = new Student();
Student xiaohong = new Student();
System.out.println(xiaohong.name); //默认null
System.out.println(xiaohong.age); //默认0
//仅对xiaohong的属性赋值
xiaohong.name = "小红";
xiaohong.age = 23;
System.out.println(xiaohong.name); //xiaohong
System.out.println(xiaohong.age); //23
//不对xiaoming的属性赋值,则一切属性默认不变
System.out.println(xiaoming.name); //默认null
System.out.println(xiaoming.age); //默认0
xiaohong.study(); //小红同学在学习
xiaoming.study(); //null同学在学习
}
}
===============================================================================
标签:关系,name,对象,xiaohong,System,Student,println,out From: https://www.cnblogs.com/bobocha/p/16746600.html