码迷,mamicode.com
首页 > 其他好文 > 详细

类、对象(oop)

时间:2021-04-30 12:16:19      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:对象   person   抽象   print   dem   ati   ring   生日   name   

```javapublic class oopDemo6Student {

String name;
int age;

public void study(){
System.out.println(this.name+"在学习");
}
}
//person--->名字、生日、身高、体重
//类(抽象)--->对象、属性(实例)
在这里插入代码片
~~~java
public class oopDemo6 {

public static void main(String[] args) {

oopDemo6Student oopDemo6Student = new oopDemo6Student();//new实例化

//类实例化后会返回一个自己的对象!
//oopDemo6Student对象就是一个oopDemo6Student类的实例!

oopDemo6Student luohz = new oopDemo6Student();
oopDemo6Student luozh = new oopDemo6Student();

luohz.name = "罗混子";
luohz.age = 21;

luozh.name = "hr";
luozh.age = 21;

System.out.println(luohz.name);
System.out.println(luohz.age);
System.out.println(luozh.name);
System.out.println(luozh.age);
}

}
```

类、对象(oop)

标签:对象   person   抽象   print   dem   ati   ring   生日   name   

原文地址:https://www.cnblogs.com/luohzz/p/14719009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!