Posts by Breno Ricardo • 9 points
3 posts
-
-1
votes1
answer36
viewsQ: Invoking methods within an Arraylist does not recognize the object method
I try to invoke the method through the method get().getNome(), but says that the method does not exist.…
-
0
votes3
answers51
viewsQ: This code n creates a <li> with the value specified in the function, what am I doing wrong?
<html> <head> <link href="css.css" rel="Stylesheet" type="text/css"/> </head> <body> <script> function apresente() { var newEl = document.createElement('li'); var…
javascriptasked Breno Ricardo 9 -
0
votes2
answers104
viewsQ: I want to understand how the instance variable and the local variable of the parameters works
public Exemplo { private int name; public Exemplo(int name) { this.name = name; } public void setName(int name) { this.name = name; } public int getName() { return name; } } I want to understand how…