1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* ========================================================================== */
class Tst
{
private:
int _a;
double _b;
public:
Tst(int initialA = 0, double initialB = 0.0) :
_a(initialA),
_b(initialB)
{}
int a(void) const
{
return _a;
}
double b(void) const
{
return _b;
}
bool aEqual(int right) const
{
return this->_a == right;
}
bool bEqual(double right) const
{
return this->_b == right;
}
} /* Tst */;
/* -------------------------------------------------------------------------- */
std::ostream &operator<<(ostream &os, const Tst &tst)
{
os << '(' << tst.a() << ", " << tst.b() << ')';
return os;
} /* std::ostream &operator<<(ostream&, const Tst&) */
/* -------------------------------------------------------------------------- */
class aEqual
{
public:
aEqual() {}
bool operator()(const Tst &left, int right) const
{
return left.aEqual(right);
}
} /* aEqual */;
/* -------------------------------------------------------------------------- */
class bEqual
{
public:
bool operator()(const Tst &left, double right) const
{
return left.bEqual(right);
}
} /* bEqual */;
/* ========================================================================== */
typedef std::vector<Tst*> TstVector;
static TstVector tstVector;
template <typename ElemType, typename BaseType, typename Compare>
ElemType *getElem(BaseType base)
{
ElemType *itemFound = NULL;
//...
for (TstVector::iterator it(tstVector.begin());
it != tstVector.end();
it++)
{
if (Compare()(**it, base))
{
itemFound = *it;
break;
}
}
//...
return itemFound;
} /* getElem() */
/* -------------------------------------------------------------------------- */
/*
* t s t
*/
static void tst(void)
{
Tst *itemFound = NULL;
tstVector.push_back(new Tst(2, 3.1));
tstVector.push_back(new Tst(4, 6.2));
tstVector.push_back(new Tst(6, 9.3));
itemFound = getElem<Tst, int, aEqual>(4);
if (itemFound != NULL)
{
std::cout << *itemFound << std::endl;
}
itemFound = getElem<Tst, double, bEqual>(9.3);
if (itemFound != NULL)
{
std::cout << *itemFound << std::endl;
}
} /* tst() */
/* ========================================================================== */
|