Is there any difference? (about unary_function<>)

K

kyo

class A
{
public:
int a;
};

struct testfun1 : public unary_function<const A&, bool>
{
bool operator()(const A &) const
{
return true;
}
};

struct testfun2 : public unary_function<A, bool>
{
bool operator()(const A &) const
{
return true;
}
};

struct testfun3 : public unary_function<A, bool>
{
bool operator()(const A *) const
{
return true;
}
};

struct testfun4 : public unary_function<const A*, bool>
{
bool operator()(const A *) const
{
return true;
}
};

When and Why that i should use testfun2 not testfun1, and testfun4 not testfun3.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top