class Man { public: string name; Man(string name) { this->name = name; }};Man man("Alex");//man.name is "Alex"cout << "name is: " << man.name;