Day31--类与对象的构建

Day31--类与对象的构建

类与对象的关系:

类是一种抽象的数据类型,它是对某一类事物整体描述,但不能代表某一具体的事物,如动物、植物、手机、电脑等。

Person 类、Pet 类、Car 类等都是用来描述 / 定义某一类具体的事物应该具备的特点和行为。

对象是抽象概念的具体实例,

张三就是人的一个具体实例,张三家里的狗就是狗的一个具体实例。

能够体现出特点、展现出功能的是具体的实例,而不是一个抽象的概念。

创建与初始化对象:

使用 new 关键字创建对象。使用 new 关键字创建的时候,除了分配内存空间之外,还会给创建好的对象进行默认的初始化以及对类中构造器的调用。

类中的构造器也称为构造方法,是在进行创建对象的时候必须要调用的。并且构造器有以下两个特点:

  1. 必须和类的名字相同;
    \2. 必须没有返回类型,也不能写 void。

构造器必须要掌握

示例:

package com.liu.oop.demo02;

//学生类
public class Student {
    //类里面只存在属性和方法

    //属性
    String name;  //默认:null
    int age;      //默认:0

    //方法
    public void study(){
        //this.name   当前这个类的name
        System.out.println(this.name+"在学习!");
    }
}





package com.liu.oop.demo02;

//一个项目只应该有一个main方法,我们在这里把他放在Application里
public class Application {
    public static void main(String[] args) {
        //类是抽象的,需要实例化
        //类实例化之后,会返回自己的一个对象
        //student对象就是Student的一个具体实例
        Student student = new Student();
        Student xiaoming=new Student();//也可以是这样

        System.out.println(xiaoming.name);//null
        //使用 new 关键字创建的时候,会给创建好的对象进行默认的初始化
    }
}

我们在Application里面,对实例进行赋值:

package com.liu.oop.demo02;

//一个项目只应该有一个main方法,我们在这里把他放在Application里
public class Application {
    public static void main(String[] args) {
        //类是抽象的,需要实例化
        //类实例化之后,会返回自己的一个对象
        //student对象就是Student的一个具体实例
        Student student = new Student();
        Student xiaoming=new Student();//也可以是这样

        xiaoming.name="小明";
        xiaoming.age=21;
        System.out.println(xiaoming.name);//小明
        System.out.println(xiaoming.age);//21

    }
}

posted @ 2024-11-07 11:18  1hahahahahahahaha  阅读(1)  评论(0编辑  收藏  举报