Search:

Type: Posts; User: SkynetSystems

Search: Search took 0.10 seconds.

  1. Re: Difference with static and non static variables

    Let's say we have a php variable. You create a reference like so:


    $var = 0;
    $new = &$var;


    Here I set $new to point to the same memory as $var so if I make any changes to $new, it also...
  2. Re: Difference with static and non static variables

    Zaphod thank you so much for breaking that down into simple terms for me. I understand the difference a lot better than before. Obviously I'm sure there is more to learn but I just needed to grasp...
  3. Difference with static and non static variables

    Hello, I am very new to Java and was going through the Oracle tutorial. I got to the variables page and have got stuck on understanding the difference between static and non-static variables.

    I...
Results 1 to 3 of 3