gpt4 book ai didi

java - 字符串连接中 string.concat 和 + 运算符的区别

转载 作者:行者123 更新时间:2023-12-01 07:46:34 25 4
gpt4 key购买 nike

(这个问题可能是重复的,但我真的不明白其他答案)

您有以下代码:

String str ="football";
str.concat(" game");
System.out.println(str); // it prints football

但是使用这段代码:

String str ="football";
str = str + " game";
System.out.println(str); // it prints football game

那么有什么区别以及到底发生了什么?

最佳答案

str.concat("game");str + "game"; 含义相同。如果您不将结果分配回某个地方,它就会丢失。你需要做的是:

str = str.concat(" game");

关于java - 字符串连接中 string.concat 和 + 运算符的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50626972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com