为什么我们不能有静态外部类 [英] Why can't we have static outer classes

查看:86
本文介绍了为什么我们不能有静态外部类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么我们不能创建外部的静态类。我在这个社区读到了问题的答案,但我还没有得到完美答案。有些人可以帮我一个确切的答案

Why can't we create static classes which are outer. I read answers to the question in this community but I haven't gotten a perfect answer. Can some help me with an exact answer

   static class A
    {  
        void display()
        {
            System.out.println("This is a static class");  
        }

    }


推荐答案

外部类已经有效 static A static 嵌套类意味着它没有引用外部类。外部类已经没有对另一个类的隐式引用。

Outer classes are already effectively static A static nested class means it has no reference to the outer class. An outer class already has no implicit reference to another class.

这篇关于为什么我们不能有静态外部类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆