30
ජාවා හි “ධාවනය කළ හැකි” එදිරිව “නූල් දිගු කරයි”
මම ජාවා හි නූල් සමඟ ගත කළ කාලයේ සිට, නූල් ලිවීමට මෙම ක්රම දෙක මට හමු විය: සමග implements Runnable: public class MyRunnable implements Runnable { public void run() { //Code } } //Started with a "new Thread(new MyRunnable()).start()" call හෝ, සමඟ extends Thread: public class MyThread extends Thread { …