Introduction to ArrayList

AP Computer Science A· difficulty 3/5

<code>ArrayList<int></code> is

  • A

    Compile error (can only use reference types)

    check_circle
  • B

    Valid (will autobox)

  • C

    Slow but works

  • D

    Compiles only with --enable-experimental

Explanation

Generic type parameters must be reference types; use Integer, Double, etc.

Want 10 more like this — adaptive to your weak spots?

Related questions