Based on this response In C ++ which the command corresponding to super () of Java?
Class Teste2{
int x;
int y;
public:
Teste2(int x, int y){
.
.
.
}
}
class Testando{
Teste2 *teste2;
public:
Testando(Teste *teste2)
{.
.
.
.
class Teste : public Testando {
string nome;
int numero;
public:
//Supondo que Teste2 teste2 foi instanciado na Classe Testando
Teste(Teste2 *teste2, string nome, int numero) : Testando(teste2) {
this.nome = nome;
this.numero = numero;
How to pass a class reference in the constructor?