Search:

Type: Posts; User: Arnab Kundu

Search: Search took 0.10 seconds.

  1. Re: topic related to static final variable and static block !!!!

    Ok..thanks dear...
  2. Re: topic related to static final variable and static block !!!!

    Since dear....
    My problem'sanswer is known to me...
    But explanation is not clear..
    Bcz every time a static field will execute immediately after the static block..here not happen...it was my...
  3. topic related to static final variable and static block !!!!

    class A{
    static final int a=10;
    static{
    System.out.println("56");
    }
    }
    class B{
    public static void main(String []args)
    {
    System.out.println(A.a);
Results 1 to 3 of 3