+ 2
How to update record, show the record in java?
4 Respostas
+ 3
LinkedList<String> c = new LinkedList<String>();
c.add("Red");
c.add("Blue");
c.add("Green");
c.add("Orange");}
//update record
c.set(1, "Yellow");
//show record
System.out.println(c.get(1));
+ 1
How to call one class to another multiple class with example?
+ 1
I don't understand English very well... But why use a LinkedList in another class?
+ 1