简体   繁体   中英

Java (Eclim + Vim) “system.out.print” not working

I am new to Java programming, and today while messing with eclim and vim, I discovered that the System.out.println(); function is not working.

class apples{
public static void main(String args[]){
    double tuna = 5.28;
    System.out.print(tuna);
}
}

This does not give me a result.

But when I do:

class apples{
public static void main(String args[]){
    double tuna = 5.28;
    System.out.println(tuna);
}
}

(The only difference is the "println") I get 5.28, the correct behavior.

Anyone know why this would happen, or is this the way it should be happening?

.println() automatically appends a newline, .print() does not.

System.out is a buffered stream; you need to .flush() for the result of .print() to appear (do it after you print, obviously). The newline in .println() causes the output to be flushed, which is why you don't need it there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM