I have a question about the key word static. Lets say for instance we have this piece of code.


public class Foo
{
private int age;
private static int weight;
..
...
}