java – 为什么我们可以拥有静态最终成员但是在内部类中不能使用静态方法?

前端之家收集整理的这篇文章主要介绍了java – 为什么我们可以拥有静态最终成员但是在内部类中不能使用静态方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么我们可以拥有静态最终成员但是在非静态内部类中不能使用静态方法

我们可以访问外部类之外的内部类的静态最终成员变量而无需实例化内部类吗?

解决方法

您可以在静态“内部”类中使用静态方法.
public class Outer {
    static String world() {
        return "world!";
    }
    static class Inner {
        static String helloWorld() {
            return "Hello " + Outer.world();
        }
    }   
    public static void main(String args[]) {
        System.out.println(Outer.Inner.helloWorld());
        // prints "Hello world!"
    }
}

但是,确切地说,根据JLS术语(8.1.3),Inner被称为嵌套类:

Inner classes may inherit static members that are not compile-time constants even though they may not declare them. Nested classes that are not inner classes may declare static members freely,in accordance with the usual rules of the Java programming language.

而且,内部类可以拥有静态最终成员并不完全正确;更确切地说,它们也必须是编译时常量.以下示例说明了不同之处:

public class InnerStaticFinal {
    class InnerWithConstant {
        static final int n = 0;
        // OKAY! Compile-time constant!
    }
    class InnerWithNotConstant {
        static final Integer n = 0;
        // DOESN'T COMPILE! Not a constant!
    }
}

在此上下文中允许编译时常量的原因显而易见:它们在编译时内联.

原文链接:https://www.f2er.com/java/128672.html

猜你在找的Java相关文章