Wednesday 23 December 2015

Java Tutorial : Java Constants


Click here to watch in Youtube :
https://www.youtube.com/watch?v=5Ao83sr8XPw&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java Constants 
ConstantTest.java
public class ConstantTest
{
    static final int CONSTANT_VALUE = 10;
    
    public static void main(String args[])
    {
        System.out.println("CONSTANT_VALUE : "+CONSTANT_VALUE);
        //CONSTANT_VALUE=70;
    }
}
Output
CONSTANT_VALUE : 10
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/ConstantDemoApp.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ConstantDemoApp

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/14218d6dfc0ba96c475ae9bea5112ff3ce747d04/BasicJava/ConstantDemoApp/?at=master

See also:

  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment