在Java中,以下哪个方法用于启动线程? A. run() B. start() C. init() D. execute() 答案解析 在Java中,start()方法用于启动线程,它会使线程进入就绪状态,等待CPU调度执行。 正确答案:B