-
PrintStream
Why when I try to make the int numbers to print double in the Printstream file Code:
/* */ public void println(int paramInt)
/* */ {
/* 735 */ synchronized (this) {
/* 736 */ print(paramInt);
/* 737 */ newLine();
print(paramInt);
newLine();
/* */ }
nothing happens.
-
Re: PrintStream
Why did you put those numbers in comments there? Are they line numbers? Are they significant to us? What do the print( ... ) and newLine() methods do? Why is that method synchronized? What is supposed to happen?
kind regards,
Jos
-
Re: PrintStream
What do you mean "nothing happens".
That code there tells us next to nothing about either what you expect, or what it actually does.
-
Re: PrintStream
Don't post the same question twice. I've merged the two threads and deleted the duplicate OP.
db