0

所以我有一张地图:

std::map<time_t, obj*, CompFunc>

我正在使用基于 time_t 年份的 CompFunc 插入。我可以遍历地图,并按照我的意愿按年顺序插入所有内容。但是当我:

typedef std::map<time_t, obj*, CompFunc>::iterator Iter;
Iter it = y.find(e1);
std::cout << ctime(&e1);  <-- prints out Mon Apr 10 17:45:00 1944, exact match to time_t object in map
std::cout << ctime(&it->first);  <-- prints out Wed Dec 31 18:00:07 1969????

因此,当我:

y.erase (e1);
    //or
y.erase(it->first);

什么都没有抹去。我紫了...

编辑:这是比较功能。

bool CompFunc::operator()(const time_t & t1, const time_t & t2) 
{                                                                               
    CmpVal = CompareYear(t1, t2);                                              
if(CmpVal != 0)                                                            
{                                                                           
    if(CmpVal == -1) {return true;}                                                       

    return false;                                                           
}                                                                           

return true;                                                                
}

 short CmpFunc::CompareYear(const time_t & t1, const time_t & t2)          
{                                                                               
    if(r1.getYear(&t1) < r2.getYear(&t2)) {return -1;}                            
    if(r1.getYear(&t1) == r2.getYear(&t2)) {return 0;}                            

return -2;                                                                  
} 

从.h:

public:                                                                     
    Cmp_event_year() {};                                                     
    ~Cmp_event_year() {};                                                    
    bool operator()(const time_t &, const time_t &);                        
private:                                                                    
    Time_t_read r1;                                                         
    Time_t_read r2;                                                         
    short CmpVal;                                                          
    short CompareYear(const time_t &, const time_t &);
4

1 回答 1

2

true如果年份t1小于或等于年份,则比较器返回t2true当且仅当t1它的年份小于 的年份时,它才需要返回t2。如果两年相等,则比较器必须返回false

比较器必须提供严格的弱排序

于 2012-10-04T21:10:54.083 回答