Advertisement
Ejejejejejjr

Структуры

Jan 2nd, 2021
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4.  
  5.  
  6.  
  7.  
  8. //создание структуры
  9. struct MyStruct
  10. {
  11.     int value = 5;
  12. };
  13. //наследование структуры(без указателя модификатора доступ наследует в public поля, а у класса наоборот)
  14. class MyClass : MyStruct
  15. {
  16. public:
  17.     void Print()
  18.     {
  19.         std::cout << value << std::endl;
  20.     }
  21. };
  22.  
  23. int main(int argc, char *argv[])
  24. {
  25.     setlocale(LC_ALL, "Rus");
  26.     srand(time(NULL));
  27.    
  28.    
  29.     MyClass c;
  30.     c.Print();
  31.    
  32.    
  33.     return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement