Posts by Luciano Douglas • 33 points
2 posts
-
1
votes0
answers435
viewsQ: How to implement simply chained circular list based on a simply chained linear list?
Hello folks how to implement simply chained circular list based on a simply chained linear list? Method of inserting element in a given position: @Override public void adiciona(E elemento, int…
javaasked Luciano Douglas 33 -
2
votes1
answer125
viewsQ: Attribute or private field and getter and Setter in Java object-oriented programming
In object-oriented programming in Java, when I create any attribute or private field, without their respective methods getter and setter has to define the attribute as final or need not? For…