12345
class Pop3Adaptor { public: const char* User(const char* userId); };
const char* Pop3Adaptor::User (const char* userId)
cin>>userId;
1234567891011121314151617
class Example { public: void cmf() const; // const member function void mf(); // member function }; void Example::cmf() const { std::clog << "Example::cmf()" << std::endl; } void Example::mf() { std::clog << "Example::mf()" << std::endl; }