public class Test { public static void main(String[] args) { Counter c; c = new Counter(); c.incr(); System.out.println(c.getValue()); } }