In Java:
public class Teste extends Testando
{
private String nome;
private int numero;
public Teste(String teste, String nome, int numero)
{
super(teste);
this.nome = nome;
this.numero = numero;
}
}
What is the command corresponding to super()
in C++
?