类、对象(oop)

2021/4/29 18:26:28

本文主要是介绍类、对象(oop),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

```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)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程