• 2021-04-14
    下列程序的功能是在监控台上每一秒种显示一个字符串“Hello!”,能够填写在线程中下划线位置,使程序完整并能正确运行的语句是
    public class Test implements Runnable{
    public static void main(String args[]){
    Test t=new Test();
    Thread tt=new Thread(t);
    tt.start();
    }