在Kotlin中,要将给定的字符串转换为大写(UpperCase),应该调用toUpperCase()
方法。这个方法是Kotlin标准库中String类的一个扩展函数。
以下是一个简单的示例代码:
fun main() {
val str = "hello, world!"
val upperCaseStr = str.toUpperCase()
println(upperCaseStr) // 输出: HELLO, WORLD!
}
toUpperCase()
是一个扩展函数,它为String类添加了新的功能,而不需要修改String类的源代码。toUpperCase()
方法会抛出NullPointerException
。可以使用安全调用操作符?.
来避免这个问题。val str: String? = null
val upperCaseStr = str?.toUpperCase() // upperCaseStr 将为 null,而不是抛出异常
希望这些信息对你有所帮助!
领取专属 10元无门槛券
手把手带您无忧上云