start(),run()都是Thread类里的静态方法。要使用他们要先继承或用implements去执行Runnable后使用thread
你好,提问者:1、启动一个线程是start()方法。2、启动线程之后start()方法会去调用run方法内容。区别:start是创建并启动一个线程,而run是要运行线程中的代码。