What's the advantage of making an inner class as static with Java?

后端 未结 6 1221
梦毁少年i
梦毁少年i 2020-12-13 18:21

I have an inner class in my Java class.

\"enter

When I run find bugs, it recom

相关标签:
6条回答
  • 2020-12-13 19:07

    A Non-static inner class has an implicit reference to outer class. If you make the class as static, you could save some memory and code.

    0 讨论(0)
  • 2020-12-13 19:10

    An inner class, by default, has an implicit reference to an object of the outer class. If you instantiate an object of this from the code of the outer class, this is all done for you. If you do otherwise you need to provide the object yourself.

    A static inner class does not have this.

    That means it can be instantiated outside the scope of an outer class object. It also means that if you 'export' an instance of the inner class, it will not prevent the current object to be collected.

    As a basic rule, if the inner class has no reason to access the outer one, you should make it static by default.

    0 讨论(0)
  • 2020-12-13 19:11

    We already have good answers, here are my 5 cents:

    Both static and non-static inner classes are used when we need to separate logical functionalities yet using the methods and variables of the outer class. Both of the inner classes have access to the private variables of the outer class.

    Advantages of static inner class: 1) static classes can access the static variables from outer class 2) static classes can be treated like an independent class

    Non-static inner class: 1) cannot use static members of the outer class 2) cannot be treated like an independent class

    public class NestedClassDemo {
        private int a = 100;
        int b = 200;
        private static int c = 500;
    
        public NestedClassDemo() {
            TestInnerStatic teststat = new TestInnerStatic();
            System.out.println("const of NestedClassDemo, a is:"+a+", b is:"+b+".."+teststat.teststat_a);
        }
    
        public String getTask1(){
            return new TestInnerClass().getTask1();
        }
    
        public String getTask2(){
            return getTask1();
        }
    
    
        class TestInnerClass{
            int test_a = 10;
    
            TestInnerClass() {
                System.out.println("const of testinner private member of outerlcass"+a+"..."+c);
            }
            String getTask1(){
                return "task1 from inner:"+test_a+","+a;
            }
        }
    
        static class TestInnerStatic{
            int teststat_a = 20;
    
            public TestInnerStatic() {
                System.out.println("const of testinnerstat:"+teststat_a+" member of outer:"+c);
            }
    
            String getTask1stat(){
                return "task1 from inner stat:"+teststat_a+","+c;
            }
        }
    
        public static void main(String[] args){
            TestInnerStatic teststat = new TestInnerStatic();
            System.out.println(teststat.teststat_a);
            NestedClassDemo nestdemo = new NestedClassDemo();
            System.out.println(nestdemo.getTask1()+"...."+nestdemo.getTask2());
        }
    }
    

    Accessing the static inner and non-static inner class from outside:

    public class TestClass {
        public static void main(String[] args){
            NestedClassDemo.TestInnerClass a = new NestedClassDemo().new TestInnerClass();
            NestedClassDemo.TestInnerStatic b = new NestedClassDemo.TestInnerStatic();
        }
    }
    

    The official java doc for static inner class can be found at https://docs.oracle.com/javase/tutorial/java/javaOO/nested.html

    0 讨论(0)
  • 2020-12-13 19:14

    If the nested class does not access any of the variables of the enclosing class, it can be made static. The advantage of this is that you do not need an enclosing instance of the outer class to use the nested class.

    0 讨论(0)
  • 2020-12-13 19:21

    Benefits of static inner classes:

    1. Instantiation of static inner class does not rely on external class guidance, and the memory overhead of instantiation.
    2. Static inner class does not hold external class guidance, does not affect the collection of external class, to avoid the extension of the external class in memory survival time leading to memory leakage.
    0 讨论(0)
  • 2020-12-13 19:28

    A static inner class is a semantically simpler thing. It's just like a top-level class except you have more options for visibility (e.g. you can make it private).

    An important reason to avoid non-static inner classes is that they are more complex. There is the hidden reference to the outer class (maybe even more than one). And a simple name in a method of the inner class may now be one of three things: a local, a field, or a field of an outer class.

    An artifact of that complexity is that the hidden reference to the outer class can lead to memory leaks. Say the inner class is a listener and could be a static inner class. As long as the listener is registered, it holds a reference to the instance of the outer class, which may in turn hold on to large amounts of memory. Making the listener static may allow the outer instance to be garbage collected.

    0 讨论(0)
提交回复
热议问题