单项选择题

请阅读下面程序,说明该程序创建线程使用的方法是( )。
public class ThreadTest
public static void main(String args[])
Thread tl=new Thread(new HolloWorld());
Thread t2=new Thread(new HolloWorld());
t1.start();
t2.start();
class HolloWorld implements Runnable
int i;
public void run()
while(true)
System.out.println("HolloWorld"+i++);
if(i==5)break;

A.继承Thread类
B.实现Runnable接口
C.t1.start()
D.t2.start()