2 つのベクトルを結合したいのですが、画面に結果を書き込もうとすると、Two にある int 番号のない結果が得られます。結果を取得したい: 1 2 3 4 50 解決方法を教えてください。ありがとうございました
#include <iostream>
#include <string>
#include <vector>
using namespace std;
template<typename T>
class One
{
protected:
T word;
T word2;
public:
One() {word = "0"; word2 = "0";}
One(T w, T w2) {word = w; word2 = w2;}
virtual const void Show() {cout << word << endl; cout << word2 << endl;}
};
template<typename T>
class Two : public One<T>
{
protected:
int number;
public:
Two() {number = 0;}
Two(T w, T w2, int n) : One(w,w2) {number = n;}
virtual const void Show () {cout << word << endl; cout << word2 << endl; cout << number << endl; }
};
int main ()
{
vector<One<string>> x;
vector<Two<string>> x2;
One<string> css("one","two");
Two<string> csss("three","four",50);
x.push_back(css);
x2.push_back(csss);
x.insert(x.end(),x2.begin(),x2.end());
for (int i = 0; i < x.size(); i++)
{
x.at(i).Show();
}
cin.get();
cin.get();
return 0;
}