java中多线程有两种实现方法: 1. 继承Thread类 2. 实现Runnable接口 实现Runnable接口的好处: 1. 避免了java单继承的局限性;若类A已继承父类B,则不可再继承Thread类。