Search Results

1
vote
6answers
121 views

Do final members assigned constants on declaration get optimized at run-time to ‘static final’s?

When I define constant values in my Java code, I generally declare them 'private static final', but recently I've been maintaining code where the constants are defined 'private final'. I'm …