Tagged Questions

10
votes
2answers
350 views

Why doesn't a Java constant divided by zero produce compile time error? [closed]

Possible Duplicate: Is 1/0 a legal Java expression? Why does this code compile? class Compiles { public final static int A = 7/0; public final static int B = 10*3; public ...
8
votes
6answers
1k views

Are all compile-time constants inlined?

Let's say I have a class like this: class ApplicationDefs{ public static final String configOption1 = "some option"; public static final String configOption2 = "some other option"; public static ...
4
votes
7answers
3k views

Java switch statement: Constant expression required, but it IS constant

So, I am working on this class that has a few static constants: public abstract class Foo { ... public static final int BAR; public static final int BAZ; public static final int BAM; ...
3
votes
1answer
130 views

final static String defined in an interface not evaluated at compile time - Android

I have two classes and an interface (for example DatabaseModel, LocalStore, and InternalModelInterface). They're defined as follows; public class DatabaseModel { // ... public static final String ...
3
votes
5answers
187 views

Time consts in Java?

Is there a Java package with all the annoying time consts , like miliseconds/seconds/minutes in a minute / hour /day / year ? I'd hate to duplicate something like that
0
votes
4answers
248 views

Static data structures

Is there any way to create Map or Set type data structures at compile time? The reason I ask this is because I'm working with App Engine and I have some data structures that need to be sorted and ...