Skip to content

Instantly share code, notes, and snippets.

@fkaa
Last active August 29, 2015 14:21
Show Gist options
  • Save fkaa/6bdc58cd05273c629032 to your computer and use it in GitHub Desktop.
Save fkaa/6bdc58cd05273c629032 to your computer and use it in GitHub Desktop.
public class Foo {
public int bar;
public Foo(int bar) {
this.bar = bar;
}
}
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<Foo> list = new ArrayList<>();
Foo foo = new Foo(5);
list.add(foo);
System.out.println(list.get(0));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment