Posts by Nome • 23 points
1 post
- 
		2 votes2 answers557 viewsQ: Question about initialized attributes in the constructor in Javapackage Livraria3; public class Livro { private String nome; private String descricao; private double valor; private String isbn; Autor autor; public Livro(Autor autor) { this.autor = autor;…