本文介绍了调用类的run方法(由线程类扩展或由runnable接口实现)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! class MyThread extends 主题 { MyThread(Runnable r) { super (r); } public void run() { SOP( 我的线程运行。); } } class MyRunnable实现Runnable { public void run() { SOP(我的runnable run。); } } 公共类MyMain { public static void main(String [ ] arg){ MyThread obj = new MyThread(new MyRunnable()); obj.start();} } 将调用哪个run方法,为什么??? 解决方案 class MyThread extends Thread{ MyThread(Runnable r) { super(r); } public void run() { SOP("my thread runs."); }}class MyRunnable implements Runnable{ public void run() { SOP("my runnable runs."); }}public class MyMain{public static void main(String[] arg){ MyThread obj = new MyThread(new MyRunnable()); obj.start();}}which run method will be called and why??? 解决方案 这篇关于调用类的run方法(由线程类扩展或由runnable接口实现)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 09-01 16:38