Pabl0o0

Untitled

Mar 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package lab3;
  2.  
  3. public class MainLista {
  4.  
  5. public static void main(String[] args) {
  6. // TODO Auto-generated method stub
  7.  
  8. LinkedList lista = new LinkedList();
  9.  
  10. Student student0 = new Student(123456, "Kowalski", "Jan", 5.5);
  11.  
  12. lista.add(new Student(123456, "Kowalski", "Jan", 5.5));
  13. lista.set(0, new Student(123456, "Kowalski", "Jan", 5.5));
  14. lista.get(0);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment