Tag: 字符串连接

如何在Java中连接两个字符串?

我想连接Java中的字符串。 为什么这不起作用? public class StackOverflowTest { public static void main(String args[]) { int theNumber = 42; System.out.println("Your number is " . theNumber . "!"); } }