How to declare an array in which all the values (or objects) are constant in java.
For eg: say a[0] is a constant, a[1] is a constant,etc....
|
|
|
How about using an Enum?
http://download.oracle.com/javase/tutorial/java/javaOO/enum.html |
|||||
|
|
Do you mean you don't want the array to be modifiable? You can't. Java doesn't support the C++-style "const" concept. You'd have to use a read-only collection of some kind. Likewise you can't declare that the elements of the array should only be used in a read-only fashion (i.e. not mutated themselves, which is different from mutating the array to change the elements within it). If you give us more information about what you're trying to do, we may be able to suggest an alternative approach. |
|||
|
|
|
You can declare the entire array as a constant, but not the content of that array. A solution to you problem: use an unmodifiable List instead of an array (if possible). This gurantees that the stored values can't be "replaced". (which means: if you store objects you'll still be able to change the properties of those objects, but you can't add, delete or replace the objects itselves.) |
|||
|
|
|
you use the keyword for eg. |
||||
|
|
|
I suppose there is a decent way we can achieve this. What I would suggest is create a class with private final array and provide a public method to read any of the element of the array. This way you would be able to restrain the users from modifying your values because you are only setting a getter without providing a setter. Hope that helps!!! |
|||
|
|