public abstract class Ticket { private static int ticket = 0; public static synchronized void setTicket(int i) { ticket = i; } public static synchronized int getTicket() { return ticket; } }