How do I enter parameters for an ArrayList in BlueJ?

前端 未结 2 1031
故里飘歌
故里飘歌 2021-01-13 06:50

In BlueJ, if I write a method that takes an array as a parameter, then when I want to test that method with a method call I have to enter the elements with curly braces, so:

相关标签:
2条回答
  • 2021-01-13 07:44

    You need to create an instance of ArrayList to pass to your method when you call it. With your project open in the main BlueJ window, click on the Tools menu, then on "Use Library Class...", then select java.util.ArrayList from the Class menu. Also select the no-argument constructor from the list that appears, then click Ok.

    BlueJ Call Library Class dialog

    BlueJ will then display another dialog asking you for a name for the instance and for a type parameter for the ArrayList. Enter a name and Integer for the type parameter.

    BlueJ Create Object dialog

    After you click Ok, the new ArrayList instance will appear in the object bench area at the bottom of the main BlueJ window.

    BlueJ Object Bench

    When you right click on the new instance, BlueJ will display a menu of methods that can be called on it. Select the boolean add(Integer) method a few times to add some values to the instance.

    Add Integers to the ArrayList

    Finally, when you right click on your test class and call the toArray method, you can enter the name of the ArrayList instance to pass it as the argument to your method.

    BlueJ Method Call dialog

    The results of the method call are displayed in a dialog.

    BlueJ Method Results dialog

    Click the Inspect button to view the contents of the int array returned from your method, or click the Get button to add it to the object bench.

    0 讨论(0)
  • 2021-01-13 07:48
    Arrays.asList("1", "2", "3");
    

    Will return a List and not a ArrayList.

    Your methods' parameters should always be the interface and not the implementation.

    0 讨论(0)
提交回复
热议问题