Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <fstream>
- //создание структуры
- struct MyStruct
- {
- int value = 5;
- };
- //наследование структуры(без указателя модификатора доступ наследует в public поля, а у класса наоборот)
- class MyClass : MyStruct
- {
- public:
- void Print()
- {
- std::cout << value << std::endl;
- }
- };
- int main(int argc, char *argv[])
- {
- setlocale(LC_ALL, "Rus");
- srand(time(NULL));
- MyClass c;
- c.Print();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement