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

If multiple threads call System.out.println(String) without synchronization, can the output get interleaved? The API makes no mention of synchronization, so this seems possible, or is interleaved output prevented by buffering and/or the VM memory model, etc.?

EDIT:

For example, if each thread contains:

System.out.println("ABC");

is the output guaranteed to be:

ABC
ABC

or could it be:

AABC
BC
share|improve this question
Always the first. But read @John Vint's answer, because you probably don't want strings to be spewed all over the console. – parkovski Feb 27 '12 at 3:51
Keep in mind that even if both System.out.println and System.err.println are synchronized, these two aren't synchronized between themselves so System.err.println may interleave with System.out.println giving you console that may not be what you expect. – Pacerier Mar 9 '12 at 0:16

4 Answers

up vote 9 down vote accepted

Since the API documentation makes no mention of thread safety on the System.out object nor does the PrintStream#println(String) method you cannot assume that it is thread-safe.

However, it is entirely possible that the underlying implementation of the JVM uses a thread-safe function for the println method (e.g. printf on glibc) so that, in reality, the output will be guaranteed per your first example (always ABC\n then ABC\n, never interspersed characters per your second example).

If you absolutely must ensure that no println calls will intersperse as you describe then you must enforce mutual exclusion manually, for example:

public void safePrintln(String s) {
  synchronized (System.out) {
    System.out.println(s);
  }
}

Of course, this will have a considerable negative performance impact on your application, as well as complicating the API usage.

share|improve this answer
5  
Why the downvote? – maerics Feb 27 '12 at 4:15

As long as you don't change the OutputStream via System.setOut it is thread safe.

Though it is thread safe you can have many threads writing to System.out such that

Thread-1
  System.out.println("A");
  System.out.println("B");
  System.out.println("C");
Thread-2
  System.out.println("1");
  System.out.println("2");
  System.out.println("3");

Can read

1
2
A
3
B
C

Among other combinations.

So to answer your question.

When you write to Systme.out - it acquires a lock on the OutputStream instance - it will then write to the buffer and immediately flush.

Once it releases the lock the OutputStream is flushed and written to. There would not be an instance where you would have different strings joined like 1A 2B

Edit:

To answer your edit - That would not happen with System.out.println. Since the PrintStream synchronizes the entire function it will fill the buffer then flush it atomically. Any new thread coming in will now have a fresh buffer to work with.

share|improve this answer
thanks for the answer, but I think you misunderstood my question. I have tried making it clearer. – espertus Feb 27 '12 at 3:41
1  
Could you clarify how you know a lock is acquired on OutputStream? – espertus Feb 27 '12 at 5:09
3  
@JohnVint: not trying to pick a fight here, but if it's not documented then the best you can do is say that some particular JVM implementation is, in fact, thread safe. In general you are probably right but there's no guarantee of this behavior on every compliant JVM, per the JLS or Java API. – maerics Feb 27 '12 at 5:15
3  
And you can only say that with total confidence if you've actually looked at the source code and seen that it actually does synchronize properly. – Stephen C Feb 27 '12 at 5:36
1  
@espertus My apologies about the 'him' comment! I think maerics brings up a good point regarding documentation. It is true the underlying implementation can change and not violate the contract. If Oracle decides to do that it would be at the cost of losing all Java developers :) That being said, if you were to run you program you will not see any interleaved strings. If you want to ensure complete thread-safety and document it you can extend PrintStream and override each method with synchronized – John Vint Feb 28 '12 at 0:40
show 9 more comments

The OpenJDK source code answers your question:

public void println(String x) {
    synchronized (this) {
        print(x);
        newLine();
    }
}

Reference: http://hg.openjdk.java.net/jdk6/jdk6/jdk/file/39e8fe7a0af1/src/share/classes/java/io/PrintStream.java

share|improve this answer
Thank you, although I wanted to know if the interface guaranteed synchronization, not whether current implementations (which might be replaced) provided synchronization. – espertus May 6 '12 at 21:16
Then the declaration of println() without the "synchronized" keyword has made it clear that it doesn't guarantee synchronization. The implementation further proves it. – zzhang May 7 '12 at 2:39

Just to clarify, say you have two threads, one that prints "ABC" and another that prints "DEF". You will never get output like this: ADBECF, but you could get either

ABC
DEF 

or

DEF
ABC
share|improve this answer
That would only happen with print, not println. Println will atomically print then write a new line. So you would have ABC above DEF or DEF above ABC – John Vint Feb 27 '12 at 4:06
Thanks, edited. – parkovski Feb 27 '12 at 4:10
@parkovski, thanks for your answer, but could you explain why you know the output won't be interleaved? – espertus Feb 27 '12 at 5:11

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.