public class CounterTest { public static void main(String[] args) { Counter mainCounter = new Counter(); CounterThread t1 = new CounterThread(mainCounter, 5, "Primo"); CounterThread t2 = new CounterThread(mainCounter, 10, "Secondo"); t1.start(); t2.start(); } }