Tagged Questions

27
votes
22answers
16k views

What is the best way to implement constants in Java?

I've seen examples like this: public class MaxSeconds { public static final int MAX_SECONDS = 25; } and supposed that I could have a Constants class to wrap constants in, declaring them static ...
11
votes
6answers
1k views

Why is there no Constant keyword in Java?

I was trying to identify the reason behind the "CONSTANTS" in Java I have learnt that Java allows us to declare constants by using final keyword. My question is why didn't Java introduce Constant ...
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 ...
10
votes
3answers
1k views

How to reference constants in EL?

How do you reference an constants with EL on a JSP page? I have an interface Addresses with a constant named URL. I know I can reference it with a scriplet by going: <%=Addresses.URL%>, but how ...
8
votes
5answers
371 views

Is there a a C-like way to get item number from enum in java?

Perhap this is a simple basic question Having an enum public enum TK{ ID,GROUP,DATA,FAIL; } Can I get the order number for example ID=0, GROUP=2, DATA=3, FAIL=4 ? This is a way to ...
8
votes
4answers
587 views

What is the use of interface constants?

I am learning Java and just found that the Interface can have fields, which are public static and final. I haven't seen any examples of these so far. What are some of the use cases of these Interface ...
7
votes
5answers
344 views

What is the Clojure equivalent of a “public static final” constant in Java

I'm writing some Clojure code that depends upon a number of constants. They will be used within tight inner loops, so it's important that they will be used and optimised as efficiently as possible by ...
7
votes
3answers
692 views

Why doesn't Java have constants for well-known system property names?

The java.lang.System class defines a number of well-known properties. For example, you can obtain the JVM's temporary directory by looking up the "java.io.tmpdir" property: ... = ...
7
votes
7answers
6k views

Java constants in JSP

I have a class that defines the names of various constants, e.g. class Constants { public static final String ATTR_CURRENT_USER = "current.user"; } I would like to use these constants within a ...
6
votes
4answers
2k views

Problems initializing a final variable in Java

I keep running into slight variations of a problem in Java and it's starting to get to me, and I can't really think of a proper way to get around it. I have an object property that is final, but ...
6
votes
5answers
3k views

Why does C# not allow const and static on the same line?

Why does C# not allow const and static on the same line? In Java, you must declare a field as 'static' and 'final' to act as a constant. Why does C# not let you declare const's as final? I make ...
5
votes
4answers
124 views

Reasoning behind not using non-implemented Interfaces to hold constants?

In his book Effective Java, Joshua Bloch recommends against using Interfaces to hold constants, The constant interface pattern is a poor use of interfaces. That a class uses some constants ...
5
votes
2answers
213 views

Alphabet constant in Java?

I have a situation where I need to find a letter's index in the alphabet. In Python I could use string.ascii_lowercase or string.ascii_uppercase. Is there something similar in Java? Obviously I could ...
5
votes
3answers
153 views

Java: access to the constants in an enumeration (enum)

reading the SCJP book, I've found something like this in the chapter 1 "self-test" : enum Animals { DOG("woof"), CAT("meow"), FISH("burble"); String sound; Animals(String s) { sound = s; ...
5
votes
3answers
617 views

Why “final static int” can be used as a switch's case constant but not “final static <your enum>”

Why is this int switch valid: public class Foo { private final static int ONE = 1; private final static int TWO = 2; public static void main(String[] args) { int value = 1; ...
5
votes
11answers
1k views

Java - Is This Good Programming Practice?

Just wondering if the following is considered to be good programming practice or not? I like to keep my individual source files as concise and uncluttered as possible, but I'm wondering what more ...
4
votes
2answers
58 views

Constant values not reflected at run time

Suppose that you compile the following two classes. The first is meant to represent a client; the second, a library class. public class Test{ public static void main(String[] args) { ...
4
votes
3answers
71 views

Overriding Constants in Java

I have two classes that extend the same abstract class. They both need the same constant, but with different values. How can I do this? Some example code to show what I want to do. abstract class A { ...
4
votes
4answers
74 views

What are most graceful alternatives to constant interfaces?

I had been looking at some code developed by an off-shore group. I see at least one "constant interface" per module defined. Example (not real world) : public interface RequestConstants{ //a mix of ...
4
votes
5answers
91 views

Defining Values of Fields as Constants in Java

I'm implementing a standard as an object oriented library in Java. Standard includes many messages which passing over network through terminals. Every message is implemented as a single class. Some ...
4
votes
2answers
364 views

Regarding Java String Constant Pool

This is regarding the Java String Constant Pool. In one of my Programs i am decrypting the password for the database and storing it in a String. I heard that the Java Strings will be stored in a ...
4
votes
2answers
160 views

How to dynamically retrieve a constant in java?

I have several interfaces all with the same constants - ID and ROOT. I also have a method into which I pass an object that will be an implementation of one of these interfaces. How can I dynamically ...
4
votes
6answers
552 views

Non-uppercase constants in Java

This question about why constants in Java are uppercase by convention made me try to think of counter examples. I can think of at least one (Double.NaN). Are there others?
4
votes
6answers
743 views

Is Java guaranteed to inline string constants if they can be determined at compile time

Consider this case: public Class1 { public static final String ONE = "ABC"; public static final String TWO = "DEF"; } public Class2 { public void someMethod() { ...
4
votes
2answers
2k views

Objective c - static members and constants

Whats the difference between: @interface SomeClass : NSObject { NSObject *something; } and @interface SomeClass : NSObject { } NSObject *something; ? Also, what's the difference between ...
4
votes
10answers
3k views

Char Array vs String: which is better for storing a set of letters

I need to store in a constant class 4 letter of a code. I can do: static final String CODE_LETTERS = "TRWAG"; or static final char[] CODE_LETTERS = {'T', 'R', 'W', 'A', 'G'}; After, I can obtain ...
4
votes
5answers
1k views

Java icon constants - Are static constants ok?

I have a number of icons used throughout an application - let's take ok/cancel icons as an example. At the moment they might be a tick and a cross (tick.png, cross.png) but I may want to replace them ...
3
votes
5answers
128 views

How to implement Constants in Java

Is this a good idea, to group constants in classes inside Constants class container like public final class Constants { public final class File { public static final int MIN_ROWS = 1; ...
3
votes
3answers
69 views

Does Java Compiler include String Constant Folding?

I found out that Java supports constant folding of primitive types, but what about Strings? Example If I create the following source code out.write("" + "<markup>" + ...
3
votes
2answers
114 views

Java multiple arguments dot notation

I've just acknowledged dot notation for method declaration with multiple arguments like this: public function getURLs(URL... urls){ for(int i = 0; i < urls.length; i++){ // walk ...
3
votes
2answers
95 views

Are there constants for language codes in java or in a java library?

Are there any constants for language codes like "en" or "de" in java or in a java library? (Or is using the strings OK?) I know that something like Locale.COUNTRY-NAME.getLanguage() would work, ...
3
votes
4answers
190 views

Why use constants instead of enums?

I've seen in lots and lots of Java libraries the use of lots of constants where enums could have easily been used. Even in Swing, there is a lot of code that uses constants instead of enums. Why? ...
3
votes
3answers
582 views

JAVA Constants: Enums VS Classes VS Interfaces

I have been reading a lot of posts on this site regarding the usage of constants. Question: When should I use Enums for constants, vs using classes or interfaces. I see 2 key situations I am ...
3
votes
2answers
625 views

Guice: Difference between Binder#bindConstant() and Binder#bind() … toInstance

I would like to ask what's the difference between bindConstant().annotatedWith(Names.named("keepAliveInterval")).to(60); and ...
3
votes
4answers
410 views

Storing integer values as constants in Enum manner in java

I'm currently creating integer constants in the following manner. public class Constants { public static int SIGN_CREATE=0; public static int SIGN_CREATE=1; public static int HOME_SCREEN=2; public ...
3
votes
2answers
668 views

Storing property value names as String constants - performance and memory usage?

I use around 1000 properties associated with a specific java.util.Properties which is backed by a file. The main reason for the file is to change them without recompiling the program and to allow ...
3
votes
2answers
4k views

Static String constants VS enum in Java 5+

I've read that question & answers: http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java And came up with a decision that enum is better way to implement a ...
3
votes
4answers
331 views

Should I make a constants class for my annotations?

Which is better? @SuppressWarnings("unchecked") @SuppressWarnings(AnnotationConstants.UNCHECKED) Where AnnotationConstants is a typical constants class... public final class AnnotationConstants { ...
2
votes
3answers
98 views

How final constant class with no instances is better than constant interface?

While reading about constant interface antipattern, i found final constant class with no instances is better than constant interface. Please explain me how? public interface ConstIfc { public ...
2
votes
3answers
61 views

Java & Compile-Time Constants

Will a static final variable of a primitive or String type, that is assigned a value at definition be considered as a REAL compile-time constant by the Java Compiler?Will such a variable gain the ...
2
votes
2answers
55 views

What's the proper way of declaring project constants in Java?

This may seems a silly question for Java developers, however, I'm new to Java, and my background is from low level c. I used to include an header file with all the constants that were relevant for my ...
2
votes
2answers
146 views

JTabbedPane: avoid automatic re-ordering tabs if stacked / Nimbus

a JTabbedPane is just what I need for my purpose. I have very limited horizontal space, so my Tabs get stacked, which is perfectly ok. But the default behaviour is that if user clicks on a Tab, the ...
2
votes
4answers
74 views

Modifiable constants inside an interface

I know that based on the Java tutorials: An interface can contain constant declarations in addition to method declarations. All constant values defined in an interface are implicitly public, ...
2
votes
2answers
237 views

Java - how do you find out which class file has a corrupt constant pool?

Is there some kind of a tool or some better output from javac to figure out which class file has a corrupt constant pool.. as I cannot compile some existing java files due to some pre-compiled file ...
2
votes
5answers
139 views

How to store Java constants for use in building key value combinations

Let's say I want to store potential keys and potential values for those keys as constants. How can I achieve this? Or should I avoid it altogether? This is the aproach that I thought of myself, ...
2
votes
5answers
225 views

Final Keyword in Constant utility class

Is the any difference in performance and/or any other benefits we can get when using final keyword with constant utility class. [ This class contains only static final fields and private constructor ...
2
votes
3answers
90 views

Any way to convert Java constants in a Constants class to an iterative form in another?

I have a constants class full of a bunch of final static strings. I need a way to get access to all these constants in this class in a nice array type form without manually created an array with each ...
2
votes
1answer
98 views

How to Create a Data Pool in Jasmin?

Does Jasmin have the ability to specify a constant pool? I need to be able to create a descriptor area of thousands of bytes. The area will contain arbitrary byte data including nulls. Here's an ...
2
votes
1answer
88 views

Constant won't change after class replaced in Tomcat

I have deployed a application on Tomcat 6 and after I deployed I wanted to do some changes on my constant class and I uploaded only the constant class (.class file) into exploded war file. And even ...
2
votes
1answer
439 views

Objective-C equivalent of Java enums or “static final” objects

I'm trying to find an Objective-C equivalent to either Java enum types, or "public static final" objects, like: public enum MyEnum { private String str; private int val; FOO( "foo ...

1 2