I want to initialize Final.value in Main method. Is it possible to initialize static final constant in other class than in its deceleration class?
public class Main {
    public static void main(String[] args) {
        //I want to initialize Final.value in Main method.
    }
}
class Final {
    //here is the static final variable which can be assigned vai a static block
    //but how do I initialize it in the main method if I don't use the static block?
    static final int value;
}
 
    