Thu 2 Aug 2007
Scripting versus Programming 2 – Constants need Recompilation
Posted by admin under Java , programmingNo Comments
… or rather compiled versus interpreted languages. If you use static final sometype varname in Java to define constants belonging to some class and you are using them in other classes you will have to recompile that classes too after changing the value of the constant.The constants get compiled into every class that use them. A problem which does not exist with interpreted languages. In Java you can use enums in some cases instead.