fork(2) download
  1. #include <string>
  2. using namespace std;
  3. class Teste2 {
  4. int x;
  5. int y;
  6. public:
  7. Teste2(int x, int y) {}
  8. };
  9. class Testando {
  10. Teste2 *teste2;
  11. public:
  12. Testando(Teste2 *teste2) {}
  13. };
  14. class Teste : public Testando {
  15. string nome;
  16. int numero;
  17. public:
  18. //Supondo que Teste2 teste2 foi instanciado na Classe Testando
  19. Teste(Teste2 *teste2, string nome, int numero) : Testando(teste2) {
  20. this->nome = nome;
  21. this->numero = numero;
  22. }
  23. };
  24. int main() {
  25. auto teste = Teste(new Teste2(1, 2), "joão", 1);
  26. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty