I have created a default constructor which creates an empty "hand".
public Hand() {
hand = new ArrayList();
}
Whats the most efficient way to have a second constructor take an Array of cards, then add them a hand?
|
I have created a default constructor which creates an empty "hand".
Whats the most efficient way to have a second constructor take an Array of cards, then add them a hand? |
|||||||
|
|
I would have one constructor to do both.
Or an ArrayList copy as Rohit Jain suggests. |
|||||||||||||||
|
|
You can do it like this: -
Or, you can iterate over your string array, and add individual elements to your
P.S: - Always declare a |
|||||||||||||
|
|
There's another option,
According to the documentation:
|
|||
|
|