[JAVA]类的创建实例化

1.学生类

package com.oop.Demo02;

// 学生类
public class Student {
//    属性
    String name; // 姓名
    int age; // 年龄

    //    方法
    public void study(){
        System.out.println(this.name+"今年"+this.age+"岁,他现在在学习");
    }
}

2. 实例化学生

package com.oop.Demo02;

public class Applacation {
    public static void main(String[] args) {
//        实例化对象
        Student student = new Student();
//        给对象属性传值
        student.name="Alibaba";
        student.age=99;
//        调用对象方法 
        student.study();
    }
}

END

posted @ 2022-06-28 15:34  LeoShi2020  阅读(71)  评论(0编辑  收藏  举报