How do we declare constant values in java ?
Use "final" keyword. If you want to make it to be accessible from other classes then you need to use "static"
Re: How do we declare constant values in java ?
Use "final" keyword. If you want to make it to be accessible from other classes then you need to use "static"