Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package lab3;
- public class MainLista {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- LinkedList lista = new LinkedList();
- Student student0 = new Student(123456, "Kowalski", "Jan", 5.5);
- lista.add(new Student(123456, "Kowalski", "Jan", 5.5));
- lista.set(0, new Student(123456, "Kowalski", "Jan", 5.5));
- lista.get(0);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment