。 但是,當我用vector替換set,因此使用push_back函數代替insert函數時,一切正常。任何人都可以解釋我做錯了什麼? 謝謝你的建議。問題與C++當我嘗試編譯下面的代碼設置容器
0
A
回答
3
std::set
將其值存儲在已排序的二叉樹中,因此它需要知道如何比較它所保存的值。默認情況下,它使用std::less
作爲比較函數,對於非專用用戶定義類型,它嘗試調用operator<
。所以,說一套如何比較你的對象最簡單的方法是定義一個operator<
爲你的類:
template <class T, class S>
class Property
{
public:
pair<T,S> p;
Property(T t, S s) { p = make_pair(t,s);}
bool operator<(const Property<T,S>& rhs) const
{
return p < rhs.p;
}
};
然而,也有告訴std::set
如何比較你的類型的其他方式。一個是專門的std::less
模板類:
namespace std {
template<typename T,typename S>
struct less<Property<T, S> >
{
bool operator()(const Property<T, S>& lhs, const Property<T,S>& rhs) const
{
return lhs.p < rhs.p;
}
};
}
另一種是用正確的簽名功能,或具有與正確的簽名定義的operator()
一個類來替代默認的比較類型。這是事情開始變得醜陋的地方。
// Comparison function
template<typename T, typename S>
bool property_less_function(const Property<T,S>& lhs, const Property<T,S>& rhs)
{
return lhs.p < rhs.p;
}
// Comparison functor
template<typename T, typename S>
struct PropertyLess
{
bool operator()(const Property<T,S>& lhs, const Property<T,S>& rhs) const
{
return lhs.p < rhs.p;
}
};
int main()
{
// Set using comparison function.
// Have to pass the function pointer in the constructor so it knows
// which function to call. The syntax could be cleaned up with some
// typedefs.
std::set<Property<std::string, std::string>,
bool(*)(const Property<std::string, std::string>&,
const Property<std::string, std::string>&)>
set1(&property_less_function<std::string, std::string>);
// Set using comparison functor. Don't have to pass a value for the functor
// because it will be default constructed.
std::set<Property<std::string, std::string>, PropertyLess<std::string, std::string> > set2;
}
請記住,任何低於你使用的功能,該功能必須定義您的類型strict weak ordering。
+0
非常感謝您的明確解釋。 – 2013-02-09 21:54:25
2
爲了在std::set
中插入一些東西,您需要定義operator<
。
例如該編譯罰款GCC 4.7.2:
#include <iostream>
#include <set>
#include <vector>
using namespace std;
template <class T, class S>
class Property
{
public:
pair<T,S> p;
Property(T t, S s) {
p = make_pair(t,s);
}
bool operator<(const Property& p2) const {
//Something naive..
return p < p2.p;
}
};
int main()
{
set< Property<string, string> > properties;
Property<string, string> name("name", "Andy");
properties.insert(name);
}
另一種方法是使用std::unordered_set
儘管這將要求您提供鑰匙並定義operator==
哈希值。
相關問題
- 1. 嘗試編譯C代碼PHP
- 2. 當我嘗試編譯我的代碼時發生錯誤
- 3. 當我嘗試編譯
- 4. 嘗試設置iPhone-gcc編譯器
- 5. 代碼不能編譯,當我嘗試使用RxJava 2
- 6. 問題的編譯C代碼
- 7. Fedora的C代碼編譯問題
- 8. 當我編譯我的代碼時有一些問題
- 9. 用C++編譯器編譯c代碼
- 10. 編譯GWT代碼與log4j問題
- 11. 下面的代碼有什麼問題?這不是編譯
- 12. 試圖設置GNU C++編譯器,但我得到一個錯誤,我不明白當我試圖編譯hello.cpp
- 13. opengl代碼編譯問題
- 14. C編譯器問題C
- 15. 如何C編譯器解釋下面的代碼序列
- 16. 編譯C#代碼與單
- 17. C++編譯器的問題
- 18. C#編寫代碼編輯器問題
- 19. 經與我有麻煩試圖編譯下面的代碼結構指針
- 20. xmonad設置編譯問題
- 21. 編譯電報源代碼 - 面向NDK建設問題
- 22. C :: B編譯器配置問題
- 23. C++編譯器問題與rasterbar libtorrent API
- 24. C編譯器與MPLab問題
- 25. 嘗試當我嘗試用下面的代碼顯示越南語字符顯示與PHP
- 26. 在代碼剪斷下面,編譯器不會編譯
- 27. 編譯器問題或代碼塊中的一些錯誤c
- 28. 代碼塊:叮噹默認編譯器設置
- 29. 預編譯有問題。嘗試部署與Heroku的
- 30. 問題嘗試編譯的Hello World與Eclipse
如果你不關心排序,你可能想嘗試一下'std :: unordered_set',這在你看來並不在這裏,根據你得到的錯誤來判斷,我已經從編譯這個錯誤我的腦子。 – chris 2013-02-09 03:34:28
@chris因爲你必須提供一個散列和相等運算符,所以它可能會使用'std :: unordered_set'更多的工作。 – Rapptz 2013-02-09 03:44:08
@Rapptz,確實,儘管訂購在我看來並不像它在這裏很突出。 – chris 2013-02-09 03:46:33