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");
}
Ukraine Says Russia Struck It With New Missile; ICBM Claim Is Disputed
-
Russia struck the city of Dnipro with a volley that Ukraine said included
an intercontinental ballistic missile. Western officials said an ICBM was
not used.
2 hours ago
No comments:
Post a Comment