在Java中,可以使用System.out.println()
方法來輸出變量的值。這個方法會將傳遞給它的參數打印到控制臺。以下是一個簡單的示例:
public class Main {
public static void main(String[] args) {
// 定義一個整數變量
int num = 42;
// 定義一個字符串變量
String str = "Hello, World!";
// 輸出整數變量的值
System.out.println("整數變量的值: " + num);
// 輸出字符串變量的值
System.out.println("字符串變量的值: " + str);
}
}
在這個示例中,我們定義了一個整數變量num
和一個字符串變量str
,然后使用System.out.println()
方法分別輸出它們的值。注意,為了在輸出字符串時連接整數和字符串,我們使用了字符串拼接操作符+
。