I need to concatenate two String arrays in Java.

void f(String[] first, String[] second) {
    String[] both = ???
}

Which is the easiest way to do this?

6
65

Leave a Reply

Your email address will not be published. Required fields are marked *