Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9c69f0452896fb9bee75036676afefc7 to your computer and use it in GitHub Desktop.
Save parzibyte/9c69f0452896fb9bee75036676afefc7 to your computer and use it in GitHub Desktop.
ArrayList<Producto> productos = new ArrayList<>();
// Le agregamos datos
productos.add(new Producto("123", "Gansito", 20f));
productos.add(new Producto("456", "Galletas Chokis", 12f));
productos.add(new Producto("7879876456", "Doritos", 5.5f));
Producto busqueda = new Producto("123", "Gansito", 20f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment