I have the following code a ebook
that inherits the class Livro
(superclass).
However, I can not create a new ebook
and setar in the name, when I put the main method ( main
) it gives error.
Class Autor
:
public class Autor {
private String nome;
private String cpf;
private String email;
}
Class Livro
:
public class Livro {
private String nome;
private String descricao;
private double valor;
private String isbn;
private Autor autor;
private boolean impresso;
public Livro(Autor autor) {
this.autor = autor;
this.isbn = "00-000-0000-00";
this.impresso = true;
}
public void setNome(String nome) {
this.nome = nome;
}
public String nome() {
return nome;
}
public boolean aplicaDescontoDe(double porcentagem) {
if(porcentagem > 0.3) { //for maior que 30%
return false; //retorna falso;
} else if (!this.impresso && porcentagem > 0.15){ //se livro digital e for maior que 15% de desconto
return false; //retorna falso
}
this.valor -=this.valor *porcentagem;
return true;
}
}
Class Ebook
:
public class Ebook extends Livro {
private String waterMark;
public Ebook(Autor autor) {
super(autor); //superclasse
}
public void setWaterMark(String weterMark) {
this.waterMark = waterMark;
}
public String getWaterMark() {
return waterMark;
}
}
I can not call main
in class Ebook
and create a new object ebook
, and set the name, and it gives error.
Ebook ebook = new Ebook() {
ebook.setNome("Bla bla bla");
}