7

I was going through some Kotlin basics and found two syntaxes.

ArrayList<String>()

And

arrayListOf<String>()

What is the difference between these two as both are part of Kotlin.Collections?

0

5 Answers 5

7

arrayListOf<T>() is mainly there for your convenience. vararg-functions usually come with a (sometimes negligible) performance impact and switching between the arrayListOf(someElements...) and arrayListOf() without that convenience method would basically delegate that problem to you as a programmer. You have to know it and you would have to change that code to ArrayList(), if such an impact is affecting you and if that convenience function wouldn't exist.

arrayListOf() is basically just that. It returns ArrayList() and it is inlined. That's just convenient, so that you don't really have to think about it, when you switch back and forth between arrayListOf(someElements) and arrayListOf().

That having said: there is no difference between arrayListOf() and ArrayList() as also others have already mentioned and arrayListOf(elements) is the convenience variant to construct an ArrayList with the given elements.

Sign up to request clarification or add additional context in comments.

Comments

3

arrayListOf is a function, that has optional variable length arguments

In case of using it without arguments, there is no difference

Comments

1
arrayListOf<T>()

is just an extension function that looks like this:

public inline fun <T> arrayListOf(): ArrayList<T> = ArrayList()

Comments

1

When creating an empty array, you can use either:

val emptyArray1 = ArrayList()
val emptyArray2 = arrayListOf()

But when creating an array from existing elements, you have to use one or the other depending on whether the existing elements are already in a collection or you want to specify them individually:

val arrayFromCollection = ArrayList(hashMap.keys)
val arrayFromElements = arrayListOf("1", "2", "3")

Note that you can use the spread operator to pass an existing collection into arrayListOf as individual elements, but if the collection is anything other than another array, you also need to convert it to an array. This probably isn't worth the extra verbosity:

val arrayFromCollectionVerbose = arrayListOf(*hashMap.keys.toTypedArray())

Comments

0

it a function is right but is use of like this

here in function used set() function of arrayListOf() is used to set the given element at specified index and replace if any element already present at that index

fun main(args: Array<String>){

   val list: ArrayList<String> = arrayListOf<String>()

   list.add("Ajay")
   list.add("Vijay")
   list.add("Prakash")

  println(".......print list.......")
  for (i in list) {
      println(i)
  }
  println(".......arrayList.set(2,\"Rohan\").......")
  list.set(2,"Rohan")
  println(".......print ArrayList.......")
  for (i in list) {
      println(i)
  }
}

Output

.......print list.......
Ajay
Vijay
Prakash
.......list.set(2,"Rohan").......
.......print list.......
Ajay
Vijay
Rohan

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.