fork(1) download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. class Aktor {
  5. public:
  6. std::string ImieNazw;
  7. Aktor(std::string imieNazw) : ImieNazw(imieNazw) {}
  8. };
  9. class Film {
  10. public:
  11. std::string Tytul;
  12. Aktor *GlownaRola;
  13. Film(std::string tytul, Aktor *glownaRola) : Tytul(tytul) {
  14. GlownaRola = glownaRola;
  15. std::cout << Tytul << "\nW glownej roli wystepuje " << GlownaRola->ImieNazw << std::endl;
  16. }
  17. };
  18.  
  19. int main() {
  20. Aktor *aktor1 = new Aktor("Cezary Pazura");
  21. Film *film1 = new Film("Kiler", aktor1);
  22. return 0;
  23. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Kiler
W glownej roli wystepuje Cezary Pazura