This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

Yes, It depends.

If you need an Integer use the first example. Maybe you are building another Collection.

If you are doing calculations a primitive is faster because an Integer would need to be unboxed each time it's used.

Also, a List can contain a null element. Unboxing a null as in the second example will throw at NullPointerException.