Created
April 7, 2017 06:45
-
-
Save ramadani/d5f3b8437e23513573755295f07e8a8e to your computer and use it in GitHub Desktop.
Javan Array Study Case 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CaseStudy { | |
public void case2() { | |
ArrayList<String> users = new ArrayList<String>(Arrays.asList("Asep Dadang Supriadi", "Akmal Fuady", | |
"Yandi Fitriyanto")); | |
ArrayList<String> usersNew = new ArrayList<String>(Arrays.asList("Ricky Andika Putra", "Ramadani")); | |
usersNew.addAll(users); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment