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");
}
Trump’s Tariffs Imperil the Fortunes of a Nissan Factory Town
-
Kanda, on Japan’s southern coast, grew in tandem with an auto plant that
sends half of the cars it makes to the United States.
1 hour ago
No comments:
Post a Comment