Posts by hofmanng96 • 11 points
2 posts
-
1
votes1
answer158
viewsQ: Insert object from a Linkedlist to a Linkedlist from another class
I have two classes in my project: Cars and Cars. At first, I have a Linkedlist stated as follows: private LinkedList<Carro> carros = new LinkedList<Carro>(); Then I have methods of…
-
0
votes1
answer88
viewsQ: List information of inserted objects in a Linkedlist
I am implementing an exercise requested in class regarding the insertion of objects in a Linkedlist (queue), but I do not know how to print the information of the objects on the screen. Follow the…