繁体   English   中英

如何使用以集合为参数的模板化客户端display()函数

[英]How to use a templated client display() function that takes a set as the parameter

我必须编写一个称为DisplaySet()的模板化客户端函数,该函数将一个集合作为参数,并显示该集合的内容。 我对如何在客户端函数中输出作为类的一部分的集合感到困惑。 这是我的代码:

“set.h”

template<class ItemType>
class Set
{
 public:
  Set();
  Set(const ItemType &an_item);
  int GetCurrentSize() const;
  bool IsEmpty() const;
  bool Add(const ItemType& new_entry);
  bool Remove(const ItemType& an_entry);
  void Clear();
  bool Contains(const ItemType& an_ntry) const; 
  vector<ItemType> ToVector() const;
  void TestSetImplementation() const;

 private:
  static const int kDefaultSetSize_ = 6;
  ItemType items_[kDefaultSetSize_]; 
  int item_count_;                    
  int max_items_;                 
  int GetIndexOf(const ItemType& target) const;
};
template<class ItemType>
void DisplaySet(const Set<ItemType> &a_set);

“set.cpp”

template<class ItemType>
void DisplaySet(const Set<ItemType> &a_set){
    int a_size = a_set.GetCurrentSize(); //gets size of the set
    cout <<"Size display "<< a_size << endl;
    for (int i = 0; i < a_size; i++) {
        cout << a_set[i] << endl; //i know this does not work because a_set is part of a class
    }
}

“的main.cpp”

#include <iostream>
#include <vector>
#include <string>   
#include "Set.h"   

using namespace std;

int main()
{
   Set<int> b_set;

   b_set.Add(setArray[1]);
   b_set.Add(setArray[2]);
   b_set.Add(setArray[4]);
   b_set.Add(setArray[8]);
   DisplaySet(b_set);

   return 0;
}

我希望有人可以解释如何使用该功能。 让我知道是否需要发布更多代码

您的Set类没有重载的operator[] ,因此调用a_set[i]DisplaySet函数中将无法正常工作。

假设您的ToVector函数返回集合中各项的向量,则DisplayFuntion可能如下所示:

#include <iterator>
#include <algorithm>
#include <iostream>
//...
template<class ItemType>
void DisplaySet(const Set<ItemType> &a_set)
{
    std::vector<ItemType> v = a_set.ToVector();
    std::copy(v.begin(), v.end(), std::ostream_iterator<ItemType>(cout, "\n"));
}

再次,这假设ToVector如所述。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM