在Java中,可以使用System.out.println()
方法在同一行中同时输出多个值。为了实现这一点,你需要将多个值用逗号分隔,并将它们包含在一个字符串中。然后,将该字符串传递给System.out.println()
方法。这是一个示例:
public class Main {
public static void main(String[] args) {
int a = 10;
int b = 20;
double c = 30.5;
String s = "Hello";
System.out.println("a: " + a + ", b: " + b + ", c: " + c + ", s: " + s);
}
}
在这个例子中,我们同时输出了4个值:整数a、整数b、双精度浮点数c和字符串s。所有这些值都用逗号分隔,并包含在一个字符串中,然后传递给System.out.println()
方法。输出结果如下:
a: 10, b: 20, c: 30.5, s: Hello