Test.hoperatore == e list :: remove()
#ifndef TEST_H
#define TEST_H
#include <memory>
template <class Type>
bool operator==(const std::weak_ptr<Type>& wp1, const std::weak_ptr<Type>& wp2)
{
std::shared_ptr<Type> sp1;
if(!wp1.expired())
sp1 = wp1.lock();
std::shared_ptr<Type> sp2;
if(!wp2.expired())
sp2 = wp2.lock();
return sp1 == sp2;
}
#endif
Test.cpp
#include "Test.h"
#include <list>
int main()
{
typedef std::list< std::weak_ptr<int> > intList;
std::shared_ptr<int> sp(new int(5));
std::weak_ptr<int> wp(sp);
intList myList;
myList.push_back(wp);
myList.remove(wp); //Problem
}
Il programma non verrà compilato a causa di myList.remove() :
1> c: \ programmi (x86) \ microsoft studio visivo 10.0 \ vc \ include \ list (1194): errore C2678: binario '==': nessun operatore trovato che prende un operando a sinistra di tipo 'std :: tr1 :: weak_ptr < _Ty>' (o non è accettabile conversione) 1>
con 1> [1> _Ty = int 1>]
Ma si può visualizzare il seguente definito in Test.h:
bool operator==(const std::weak_ptr<Type>& wp1, const std::weak_ptr<Type>& wp2)
Qual è il problema?
non sicuro, ma si può provare a definire l'operatore bool == con riferimenti const? – CharlesB
Whoops, l'avevo originariamente in quel modo e ho dimenticato di cambiarlo di nuovo. Lo stesso problema con i riferimenti const. – user987280