2
I have this class:
package auladezoitodonove;
public class Conta {
// atributos
private int numeroConta;
private String nomeCliente;
private int identificador;
//Construtores
void Conta (){
numeroConta = ++identificador;
}
void Conta(String cliente){
numeroConta = ++identificador;
nomeCliente = cliente;
}
And this other class inheriting from the class Conta
:
package auladezoitodonove;
public class ContaCorrente extends Conta{
private int taxa;
public ContaCorrente(String cliente, int taxa) {
super(nomeCliente);
nomeCliente = cliente;
this.taxa = taxa;
}
I cannot understand why it is not possible to inherit the attributes of the class Conta
for ContaCorrente
.