30
Java में "Runnable" बनाम "थ्रेड का विस्तार" लागू होता है
मैंने जावा में थ्रेड्स के साथ कितने समय बिताए हैं, मैंने थ्रेड लिखने के इन दो तरीकों को पाया है: के साथ implements Runnable: public class MyRunnable implements Runnable { public void run() { //Code } } //Started with a "new Thread(new MyRunnable()).start()" call या, के साथ extends Thread: public …