Skip to content

Instantly share code, notes, and snippets.

@rousan
Created February 11, 2018 05:50
Show Gist options
  • Save rousan/1955897156bd6a24a592735e8755309e to your computer and use it in GitHub Desktop.
Save rousan/1955897156bd6a24a592735e8755309e to your computer and use it in GitHub Desktop.
Java collection test
import java.util.*;
public class MyClass {
public static List<String> list = new ArrayList();
public static void main(String args[]) {
MyClass.list.add("Item1");
MyClass.list.add("Item2");
MyClass.list.add("Item3");
System.out.println(MyClass.list);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment