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

我正在尝试连接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"

以上是 如何在Java中连接两个字符串? 的全部内容, 来源链接: utcz.com/qa/415724.html

回到顶部