Program to demonstrate static variables, methods, and blocks

/* Program to demonstrate static variables, methods, and blocks */

class StaticDemo1
{
    static int a = 5;
    static int b;

    static void display(int c)
    {
        System.out.println(" a = "+a);
        System.out.println(" b = "+b);
        System.out.println(" c = "+c);
    }

    static
    {
        System.out.println(" static block initialized....");
        b = a * 5;
    }

    public static void main(String args[])
    {
        display(40);
    }
}
       

0 comments:

Post a Comment

 
 
 
 


Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies|