What’s the Kotlin equivalent of Java’s String[]?

I see that Kotlin has ByteArray, ShortArray, IntArray, CharArray, DoubleArray, FloatArray, which are equivalent to byte[], short[], int[],char[], double[], float[] in Java.

Now I’m wondering, is there any StringArray equivalent to Java’s String[]?

8 Answers
8

Leave a Comment