gpt4 book ai didi

string - Kotlin - 如何正确连接字符串

转载 作者:IT老高 更新时间:2023-10-28 13:26:11 26 4
gpt4 key购买 nike

一个非常基本的问题,在 Kotlin 中连接字符串的正确方法是什么?

在 Java 中,您将使用 concat() 方法,例如

String a = "Hello ";
String b = a.concat("World"); // b = Hello World

concat() 函数虽然不适用于 Kotlin。我应该使用 + 符号吗?

最佳答案

字符串模板/插值

在 Kotlin 中,您可以使用 String interpolation/templates 进行连接:

val a = "Hello"
val b = "World"
val c = "$a $b"

输出将是:Hello World

或者您可以使用 StringBuilder 进行连接明确的。

val a = "Hello"
val b = "World"

val sb = StringBuilder()
sb.append(a).append(b)
val c = sb.toString()

print(c)

输出将是:HelloWorld

新建字符串对象

或者您可以使用 +/plus() 连接运营商:

val a = "Hello"
val b = "World"
val c = a + b // same as calling operator function a.plus(b)

print(c)

输出将是:HelloWorld

  • 这将创建一个新的 String 对象。

关于string - Kotlin - 如何正确连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44188240/

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