How to update record, show the record in java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to update record, show the record in java?

13th May 2018, 12:18 PM
Raja Durai
4 Answers
+ 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));
13th May 2018, 3:07 PM
Петр Кузнецов
Петр Кузнецов - avatar
+ 1
How to call one class to another multiple class with example?
13th May 2018, 3:32 PM
Raja Durai
+ 1
I don't understand English very well... But why use a LinkedList in another class?
13th May 2018, 4:06 PM
Петр Кузнецов
Петр Кузнецов - avatar
13th May 2018, 4:59 PM
Петр Кузнецов
Петр Кузнецов - avatar