Skip to content
Advertisement

Collection cannot be converted to Object[]

Need help with a problem for a class! So I have created an array of names that gets passed to a method named runA in the class Proj04Runner. I need to create a TreeSet of these names to put them in naturally ascending order with no repeating values. However when I run my code, I get an error telling me that Collection cannot be converted to Object[].

JavaScript

}

JavaScript

Any help would be greatly appreciated! Thank you!

Advertisement

Answer

Problem

Let’s check the types:

  • myArray is type of Object[]
  • method runA takes one argument of type Object[] and returns Collection

The problem part is:

JavaScript

Now we are supplying Object[] (myArray) to method runner.runA(), which is correct. On the other hand we are returning Collection and trying to assign it to variable of type Object[] (myArray), which is not correct.

Solution

Now you have many options to solve this type madness.

Obvious two are:

  • Make method runA return Object[] instead of Collection
    • e.g. return ref.stream().toArray()
  • Make myArray type of Collection instead of Object[]

Final notes

Do not use “raw” types

Instead of Collection, you say collection of what, e.g. collection of integers Collection<Integer> or collection of strings Collection<String>

int cnt is declared twice

Variable int cnt is declared two times in the same scope.

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