public class Shop implements Runnable {
@Override
public void run() {
// todo impl...
}
public static void main(String[] args) {
Shop shop = new Shop();
Thread thread = new Thread(shop); // Using the constructor Thread(Runnable r)
shop.start();
}
}
Comments
Leave a comment