我正在尝试连接Java中的字符串。为什么这不起作用?

public class StackOverflowTest {
    public static void main(String args[]) {
        int theNumber = 42;
        System.out.println("Your number is " . theNumber . "!");
    }
}

最佳答案

您可以使用+运算符来连接字符串:

System.out.println("Your number is " + theNumber + "!");
theNumber隐式转换为String "42"

10-06 02:21