Java #15: How to Make a Constant Variable in Java

//final variable – usually in all caps
final double CONSTANT_VARIABLE = 6;

——————Full Program——————
//Programmer:Akinwale Owi
//Company:Dagba Computers
//Program Purpose:Create A Constant Variable

package dagba.samples;

/**
*
* @author Akin
*/
public class DagbaSamples {

/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
//final variable – usually in all caps
final double CONSTANT_VARIABLE = 6;

//Print to test constant variable
System.out.println(“The constant variable is = “+CONSTANT_VARIABLE);
}//end of main

}//end of public Dagba Class

Leave a comment