It is possible to distinguish when template parameter in functor represents an object or a pointer to object?

class Comparator
{
    public:

            template <typename Object>
            bool operator() ( const Object &o1, const Object &o2 ) const
            {
                   return ( o1.getID() < o2.getID() );
            }

            template <typename Object>
            bool operator() ( const Object *o1, const Object *o2 ) const
            {
                   return ( o1->getID() < o2->getID() );
            }
};

Objects or pointers are stored in generic container List, that should be sorted using the Comparator class

int main()
{
   List <Object *> objects1;
   std::sort(objects1.begin(), objects1.end(), Comparator()); 
   List <Object> objects2;
   std::sort(objects2.begin(), objects2.end(), Comparator());
);

Currently I am using two comparators (Comparator1, Comparator2) but I do not find it comfortable...

link|improve this question

40% accept rate
I think two objects of a same class type, will always be equal in size. You need to have another template parameter to compare objects of two different classes. – Mahesh Feb 1 '11 at 15:20
operator () can be overloaded, and member template or both. what specific problems are you having? – ThomasMcLeod Feb 1 '11 at 15:25
I solved the problem using tmeplate specialization for Object*. – Robo Feb 1 '11 at 16:19
feedback

2 Answers

You could templatetify the Comparator itself:

template<typename Object>
class Comparator {
    public:

        bool operator()(const Object &o1, const Object &o2) const {
            return (o1.getID() < o2.getID());
        }

        bool operator()(const Object *o1, const Object *o2) const {
            return (o1->getID() < o2->getID());
        }
};
int main() {
    std::vector objects1;
    std::sort(objects1.begin(), objects1.end(), Comparator<Object> ());
    std::vector objects2;
    std::sort(objects2.begin(), objects2.end(), Comparator<Object> ());
    return 0;
}

This way it doesn't even generate two separate comparators!

link|improve this answer
Shouldn't the Comparator<Object> call for objects1 be Comparator<Object*>? – Tony Feb 1 '11 at 15:30
I am sorry, but it does not work... The same results as using the method template. But I could specialize Comparator class, it should work correctly. – Robo Feb 1 '11 at 15:32
And it works... – Robo Feb 1 '11 at 15:39
@Tony: Nope, it's the same template specialization in both cases (and that's actually the trick here). The difference is in the selected operator(). – LumpN Feb 1 '11 at 18:59
Interesting, I've learnt something new. Thanks. – Tony Feb 1 '11 at 23:45
feedback

Given your architecture (one list of Objects, another of Object*s) you really have no alternative.

Do you really need two lists?

link|improve this answer
Yes, I need it... Then nothing can be done :-). – Robo Feb 1 '11 at 15:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.