Its not to concatenate but to merge two arrays so that they become array of name value pairs.
firstarray = ["a","aa","aaa"]
secondarray = ["b","bb","bbb"]
result = [["a","b"],["aa","bb"],["aaa","bbb"]]
What is the best way to do it?
|
|
in Java:
|
|||
|
|
Relies on the 2 arrays having a one-to-one relationship. |
|||
|
|
|
If by "name value pairs" you mean you want
|
|||
|
|
|
I would recommend you use the Java collection classes, and avoid using arrays. Only use arrays if/when you have to do so. Otherwise, stick with learning and becoming much more proficient with the collection classes. If I were to approach this problem, I would have two instances of List. And then I would create an instance of Map into which I would place the contents of the two lists. Here's the example code:
I don't think I can reinforce this point enough - avoid the use of arrays unless there is no way to do what you want with the Java collection classes. |
|||
|
|