-1
どのようなテンプレートクラスが使用されているのか理解できません。 私はC++を初めて使っています。詳細な説明はありますか?C++のテンプレートクラスの目的は何ですか
// constructing unordered_sets
#include <iostream>
#include <string>
#include <unordered_set>
template<class T>
T cmerge (T a, T b) { T t(a); t.insert(b.begin(),b.end()); return t; }
std::unordered_set<std::string> second ({"red","green","blue"}); // init list
std::unordered_set<std::string> third ({"orange","pink","yellow"}); // init list
std::unordered_set<std::string> fourth (second);
std::unordered_set<std::string> fifth (cmerge(third,fourth)); // move
(https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list)[良い初心者の本や2を読みます]。 –
あなたは私にいくつかお勧めします –
彼はしました。それはリンクです。 – Yunnosch