contentToString
所在位置是kotlin.collections.contentToString
,其相关用法介绍如下。
用法一
@DeprecatedSinceKotlin("1.4") fun <T> Array<out T>.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun ByteArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun ShortArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun LongArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun FloatArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun DoubleArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun BooleanArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") fun CharArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。返回指定数组内容的字符串表示形式,就好像它是 List 。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val array = arrayOf("apples", "oranges", "lime")
println(array.contentToString()) // [apples, oranges, lime]
//sampleEnd
}
输出:
[apples, oranges, lime]
用法二
@DeprecatedSinceKotlin("1.4") @ExperimentalUnsignedTypes fun UIntArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") @ExperimentalUnsignedTypes fun ULongArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") @ExperimentalUnsignedTypes fun UByteArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。@DeprecatedSinceKotlin("1.4") @ExperimentalUnsignedTypes fun UShortArray.contentToString(): String
已弃用:使用 Kotlin 编译器 1.4 来避免弃用警告。返回指定数组内容的字符串表示形式,就好像它是 List 。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val array = arrayOf("apples", "oranges", "lime")
println(array.contentToString()) // [apples, oranges, lime]
//sampleEnd
}
输出:
[apples, oranges, lime]
相关用法
- Kotlin contentEquals用法及代码示例
- Kotlin containsAll用法及代码示例
- Kotlin contains用法及代码示例
- Kotlin containsValue用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin code用法及代码示例
- Kotlin copyOf用法及代码示例
- Kotlin component2用法及代码示例
- Kotlin coerceIn用法及代码示例
- Kotlin coerceAtMost用法及代码示例
- Kotlin coerceAtLeast用法及代码示例
- Kotlin commonSuffixWith用法及代码示例
- Kotlin component1用法及代码示例
- Kotlin capitalize用法及代码示例
- Kotlin chunkedSequence用法及代码示例
- Kotlin chunked用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.collections.contentToString。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。