Search:

Type: Posts; User: Arnab Kundu

Search: Search took 0.19 seconds.

  1. Replies
    0
    Views
    1,114

    final variable!!!!

    We can declare instance as well as local variable as final....
    But where final variable store in memory???
  2. Re: topic related to static final variable and static block !!!!

    Ok..thanks dear...
  3. 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...
  4. Replies
    1
    Views
    4,765

    no explicit pointer in Java..

    Java does not support explicit pointer..
    But it supports implicit pointer...
    Reference variable is actually a pointer bcz it holds address of object...
  5. 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);
  6. Replies
    1
    Views
    978

    Re: Password Inputs

    Console cc=System.console();
    char []str=cc.readPassword();
  7. topic related to static final variable and static block !!!!

    The question is as follows:


    class A{
    final static int a=10;
    final static void call()
    {
    System.out.println("two");
    }
    static{
Results 1 to 7 of 9