Java: startingPath as “public static final” exception

后端 未结 5 1050
天涯浪人
天涯浪人 2021-01-26 13:00

[Updated, sorry about the change but now to the real problem] I cannot include try-catch-loop there for the exception from the method getCanonicalPath(). I trie

相关标签:
5条回答
  • 2021-01-26 13:27
     public static final String startingPath = (new File(".")).getCanonicalPath();
    

    You are missing the type of variable startingPath

    0 讨论(0)
  • 2021-01-26 13:31

    You can provide a static method to initialize your static variable:

    public static final String startingPath = initPath();
    
    private static String initPath() {
        try {
            return new File(".").getCanonicalPath();
        } catch (IOException e) {
            throw new RuntimeException("Got I/O exception during initialization", e);
        }
    }
    

    Or you can initialize your variable in a static block:

    public static final String startingPath;
    
    static {
        try {
            startingPath = new File(".").getCanonicalPath();
        } catch (IOException e) {
            throw new RuntimeException("Got I/O exception during initialization", e);
        }
    }
    

    EDIT: In this case your variable is static so there is no way to declare the exception thrown. Just for reference, if the variable is non-static you could do this by declaring the thrown exception in the constructor, like so:

    public class PathHandler {
    
        private final String thePath = new File(".").getCanonicalPath();
    
        public PathHandler() throws IOException {
            // other initialization
        }
    
    0 讨论(0)
  • 2021-01-26 13:31

    Just initialize it in the static block(the variable is final). You can't catch exceptions on declaring a variable.

    0 讨论(0)
  • 2021-01-26 13:36

    The name is fine; you forgot to declare the type.

    public static final String startingPath;
    //                  ^^^^^^
    

    Fixing that, you of course realize the harder problem of how to deal with the possible IOException and startingPath being final. One way is to use a static initializer:

    JLS 8.7 Static Initializers

    Any static initializers declared in a class are executed when the class is initialized and, together with any field initializers for class variables, may be used to initialize the class variables of the class.

     public static final String startingPath;
     static {
        String path = null;
        try {
          path = new File(".").getCanonicalPath();
        } catch (IOException e) {
          // do whatever you have to do
        }
        startingPath = path;
     }
    

    Another way is to use a static method (see Kevin Brock's answer). That approach actually results in better readability, and is the recommended approach by Josh Bloch in Effective Java.


    See also

    • How to handle a static final field initializer that throws checked exception?
    • In what order do static initializer blocks in Java run?
    0 讨论(0)
  • 2021-01-26 13:43

    You are missing the type of your variable, it should be

    public static void String startingPath ...
    
    0 讨论(0)
提交回复
热议问题