Skip to content
Advertisement

Why does this ArrayList ‘add’ operation not add the new element? [closed]

When I run this code I expect an ArrayList with one element, the String “Hi”, to be added to the ArrayList at the 0th index. When I print the element at the 0th index I don’t get “Hi”, rather I get true. I don’t know how to interpret that result.

JavaScript

Here is the output I get:

JavaScript

Advertisement

Answer

This is what you are looking for:

JavaScript

The reason being that with myUnsafeArrayList.add(0, ((new ArrayList()).add("Hi"))); you are saying “add to index 0 of myUnsafeArrayList the result of ((new ArrayList()).add("Hi"))“. If you check the reference documentation the add(E element) returns a boolean and that is why you actually get true instead of Hi.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement