Reputation: 43
I'm trying to make a constructor that would accept any number of variables of class "Item" as a variable argument list and add them to appropriate collection. What would be the best way to go about it?
My code so far:
import java.util.List;
public class Order {
private static long counter;
private final long orderNumber;
private final List<Item> items;
public Order(long counter, long orderNumber, Item... args) {
this.counter = counter;
this.orderNumber = orderNumber;
items{
list.add(Item);
}
}
}
Upvotes: 1
Views: 388
Reputation: 13866
Item... args
should be fine.. You can then just do this
this.items = Arrays.asList(args);
… instead of the static items
block.
See similar code run live at IdeOne.com.
Upvotes: 2