有可能在Java中做这样的事情吗?我是在想。
首先,我只是创建一个具有一个参数的新线程。
Thread thread = new Thread(new Person());
然后,在 Person() 的构造函数中,我想启动该线程。那么这样的事情可能吗?
public Person() {
// Here belongs some code for the constructor and then
// I would like to start the thread
}