猿问

Java中的静态类

Java中的静态类

有什么像static class在爪哇?

这样一个阶级的意义是什么。静态类的所有方法是否都需要static也是?

反过来,如果一个类包含所有的静态方法,那么该类是否也是静态的呢?

静态类有什么好处?


慕娘9325324
浏览 296回答 3
3回答

MYYA

有静电嵌套类,这个[静态嵌套的]类不需要一个封闭类的实例来实例化自己。这些类[静态嵌套类]只能访问封闭类的静态成员[因为它不引用封闭类的实例.]代码示例:public class Test {    class A { }    static class B { }   public static void main(String[] args) {      /*will fail - compilation error, you need an instance of Test to instantiate A*/     A a = new A();      /*will compile successfully, not instance of Test is needed to instantiate B */     B b = new B();    }}
随时随地看视频慕课网APP

相关分类

Java
我要回答