Skip to content
Advertisement

How to return a list of strings in Java?

I want to return a list of strings when I call the method generateArrayList(2); It reminds me "Method does not exist or incorrect signature: void generateArrayList(Integer) from the type anon" Anyone help me, please! here is my class:

JavaScript

Advertisement

Answer

You have few compile time errors which needs to be corrected before it can work correctly.

  1. integer: It will either be an int or an Integer. Use ArrayList
  2. new List<String>: It’s an interface. You can’t instantiate an interface.
  3. 'Test': Single quotes is used for Character literal, for Strings use double quotes.
  4. Also, there’s no need of string.valueOf(i).

Below, I have corrected all these errors. It should work now.

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