Title
d

dineshbob

07/01/2017, 5:02 AM
Hi all. How can I create a List with initial capacity in Kotlin similar to Java? It seems the mutableListOf method only has elements parameter.
v

voddan

07/01/2017, 6:08 AM
dineshbob:
MutableList<String>(n, {""})
d

dineshbob

07/01/2017, 6:21 AM
Thanks Daniil. And it looks like the list has to be initialized inside the lamda itself, right?
v

voddan

07/01/2017, 7:27 AM
Not sure what you meant by initializing, here are the docs: http://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list.html
j

jk

07/01/2017, 9:23 AM
You would have to use the ArrayList constructor:
val list = ArrayList(size)
I think the reason is because you can't make an assumption about what implementation mutableListOf gives you
E.g if it gives you a linked list which doesn't have a size initialiser
v

voddan

07/01/2017, 9:30 AM
@jk `MutableList`function was added in 1.1 and works the same as
ArrayList
j

jk

07/01/2017, 9:46 AM
My point is that the name MutableList just indicates "a list, that is mutable". If they wanted to change the underlying implementation in the future they could do
Although
MutableList<String>(n, {""})
will work fine - @dineshbob it's just initialising the first n as "", you can still mutate it after initialisation
d

dineshbob

07/01/2017, 11:52 AM
Thanks @jk @voddan . If the ArrayList is created with an initial size, we can just call add() to add the elements. But if we create
MutableList<String>(n, {""}
then the List is initialized with empty strings. If we call add() to add the elements now, they are added after the empty strings. I see that's one big difference.
So is it ok to use the Java's
ArrayList(size)
directly in the Kotlin world? I thought that's not advised in Kotlin.
m

muhil

07/01/2017, 11:58 AM
@dineshbob i don't think it is a bad practice. You could instantiate an ArrayList without any issue šŸ˜‰
j

jk

07/01/2017, 11:59 AM
Kotlin has it's own ArrayList that implements MutableList: https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-array-list/index.html
d

dineshbob

07/01/2017, 12:05 PM
whoa. looks like there are two ArrayList. One for JVM which is type alias to Java's ArrayList, and another one for JS which implements MutableList
j

jk

07/01/2017, 12:09 PM
Oh I didn't notice that! So on JVM it doesn't implement MutableList?
d

dineshbob

07/01/2017, 12:09 PM
In this document they say to use the methods such as mutableListOf to create the Lists: https://kotlinlang.org/docs/reference/collections.html @muhil
j

jk

07/01/2017, 12:10 PM
Yes, using MutableList should be the default when you need a mutable list
But since you seem to specifically want to use an ArrayList type structure where you specify an initial capacity of the underlying array, using the a specific ArrayList is fine
šŸ‘ 1
d

dineshbob

07/01/2017, 12:15 PM
Okay. that makes sense. Thanks šŸ™‚
šŸ‘ 1
v

voddan

07/01/2017, 4:20 PM
on JVM it doesn't implement MutableList?
It does. The type hierarchy does not depend on the target platform. The types are mapped. Details: http://kotlinlang.org/docs/reference/java-interop.html#mapped-types
šŸ‘ 1