在静态字段之前初始化的非静态字段



注意:我打算将其作为问题发布,但我试图在SSCCE中重现该问题,这使我找到了下面发布的解决方案。

我的代码中有一个类,其中private ,非static字段,static final字段之前初始化。我无法在以下SSCCE中重现该问题:

public class MyClass {
    private static final File myDefaultPath = 
                new File(System.getProperty("user.home"), "DefaultPath");
    private JFileChooser myFileChooser = new JFileChooser() {
        // File chooser initialization block:
        {
            myDefaultPath.mkdirs(); 
                // In my code, the above line throws:
                // java.lang.ExceptionInInitializerError
                // Caused by: java.lang.NullPointerException
                //    at init.order.MyClass$1.<init>(MyClass.java:18)
                //    at init.order.MyClass.<init>(MyClass.java:14)
                //    at init.order.MyClass.<clinit>(MyClass.java:9)
            setCurrentDirectory(myDefaultPath);
        }
    };
    public static void main (String[] args) {
        new MyClass().myFileChooser.showDialog(null, "Choose");
    }
}

由于某种原因,File myDefaultPathJFileChooser myFileChooser之前未初始化。

不应该先初始化static(尤其是static final)字段吗?

在我的代码中,我的类存储自身的一个static实例(一个单例),这些字段在单例初始化后以文本方式出现的任何其他static字段之前启动:

public class MyClass {
    private static MyClass c = 
            new MyClass();
    private static final File myDefaultPath = 
                new File(System.getProperty("user.home"), "DefaultPath");
    private JFileChooser myFileChooser = new JFileChooser() {
        // File chooser initialization block:
        {
            myDefaultPath.mkdirs(); // This code *will* throw an exception!
            setCurrentDirectory(myDefaultPath);
        }
    };
    public static void main (String[] args) {
        c.myFileChooser.showDialog(null, "Choose");
    }
}

可能的解决方案是:

  • 在单一实例初始化之前移动myDefaultPath初始化。
  • myDefaultPath修改为编译时常量(并保留其staticfinal修饰符),使其在MyClass的所有其他成员之前初始化(例如,使其成为硬编码的String路径)。
  • 相关内容

    • 没有找到相关文章