Sphere: Related Content
#include <string>
#include <iostream>
using namespace std;
class B {
public:
B(const string& ss) { cout << "B constructor\n"; f(ss); }
virtual void f(const string&) { cout << "B::f\n";}
};
class D : public B {
public:
D(const string & ss) :B(ss) { cout << "D constructor\n";}
void f(const string& ss) { cout << "D::f\n"; s = ss; }
private:
string s;
};
int main()
{
D d("Hello");
cout << "----------------" << endl;
d.f("hi");
}
Haidilao Singapore will close its Clarke Quay outlet on Aug 31, eligible
members to receive S$20 e-voucher
-
The Haidilao outlet at Clarke Quay is the hot pot chain's first-ever
restaurant in Singapore.
38 minutes ago
No comments:
Post a Comment