public class RestaurantCB { RestaurantCB(String[] args) { int antall = Integer.parseInt(args[0]); FellesBord bord = new FellesBord(); Kokk kokk = new Kokk(bord,antall); new Thread(kokk).start(); Servitor servitor = new Servitor(bord,antall); new Thread(servitor).start(); } public static void main(String[] args) { new RestaurantCB(args); } }