有这个方法/*** Allocates a new <code>Thread</code> object. This constructor has* the same effect as <code>Thread(null, null, name)</code>.** @param name the name of the new thread.* @see #Thread(ThreadGroup, Runnable, String)*/public Thread(String name) {init(null, null, name, 0);}