Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it correct to create a thread and call its start() method inside a class' constructor as done here?

public class Server implements Runnable {

    private ServerSocket server;

    public Server(int port) {
        try {
            //Opens a new server 
            server = new ServerSocket(port);
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }

        new Thread(this, "Server").start();
    }

    @Override
    public void run() {
    }
}
share|improve this question

5 Answers

up vote 11 down vote accepted

IMHO, do not do this. You're allowing the this reference to escape during construction.

share|improve this answer
can you explain it? – Mazzy Jan 13 '12 at 18:20
@Mazzy, You're allowing another object to view a partially constructed object, which can have severely negative side-effects. – mre Jan 13 '12 at 18:20
1  
You can use a static factory method to achieve the desired effect without the negative side effects. – emory Jan 13 '12 at 18:41
@mre What could be the solution to avoid this problem? – Mazzy Jan 13 '12 at 18:44
@Mazzy, Declare a method that is to be invoked after the Server object has been constructs (e.g. start()). – mre Jan 13 '12 at 18:51
show 6 more comments

Granted, your code isnt doing it but what if your code looked like this:

public Server(int port)
{       
    new Thread(this, "Server").start();

    try
    {
        //Opens a new server 
        server = new ServerSocket(port);
    }
    catch (IOException ioe){ ioe.printStackTrace(); }

}
@Override    
public void run(){
    if(server == null)throw new NullPointerException();// this may happen
}
}

The server reference may be null even though no exception occurs. This is because the Thread will use the created runnable and invoke the run method even if the constructor of your class hasn't finished.

share|improve this answer
Server s = new Server();
Thread t = new Thread(s, "Server").start();

is more testable. It allows you to create an instance of Server and unit test its methods without spawning a thread.

share|improve this answer

A couple more good reasons to split the Thread.start() from the constructor:

  1. If you ever want to use some other framework/system to run the threads, such as a java.util.concurrent.Executor, you may do so.
  2. If you ever want to interrupt the thread, you need a reference to it. Creating the Thread in a separate line of code makes this somewhat more routine / idiomatic. e.g.

    Thread rememberMe = new Thread(server).start();

In your original code, Server could have a field to remember myThread, but it didn't.

share|improve this answer
public class Server implements Runnable
{
private ServerSocket server;

/**
 * Because the constructor is private, the only way to instantiate a Server is through
 * the static factory method.
 * If there are any instantiation problems, the static factory method will fail in
 * first line, before it is put into a thread.
 * It will be put into a thread before being released.
 **/    
public static Server startServer ( int port )
{
    Server server = new Server ( port ) ;
    new Thread ( server , "Server" ) . start ( ) ;
    return server ;
}

private Server(int port)
{       
    try
    {
        //Opens a new server 
        server = new ServerSocket(port);
    }
    catch (IOException ioe){ ioe.printStackTrace(); }

//    don't release me into the wild yet!
//    new Thread(this, "Server").start();
}
@Override    
public void run(){
}
}
share|improve this answer
What's the meaning to add the value return Server ? – Mazzy Jan 13 '12 at 19:14
It is necessary if you want a reference to the created server. If you just want to create and start a server, it is not needed. – emory Jan 13 '12 at 19:18
@emory, +1 This is similar to the newInstance approach. – mre Jan 13 '12 at 20:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.