面向对象编程的本质就是:以类的方式组织代码,以对象的组织(封装)技术
方法有两种调用方式
1.通过创建主函数的对象来调用方法
2.通过把 “static” 修饰符把方法可以直接调用函数
类里面只能有属性和方法
//学生类
public class Student {
int age;
String name;
//属性
public void Study(){
System.out.println("学习中");
}
//方法
}
//类里面只能有属性和方法
(待补充
标签:17,对象,方法,面向对象,2022.10,public,属性 From: https://www.cnblogs.com/phantomcarrot/p/16800485.html