在java中使用static的方法叫静态方法,静态方法只可以类本身调用,实例对象不可以调用
没有static的方法叫做实例方法,任何一个实例都可以调用。同样,类变量和方法类似
类的实例对象调用静态方法,黄色警告内容为:
The static method DoSomethingWithStatic() from the type Student should be accessed in a static way
类的实例对象调用静态变量,黄色警告内容为:
The static field Student.name should be accessed in a static way
java基础13---static关键字
最新推荐文章于 2021-10-19 18:02:41 发布