Hi who knows what member function is invoked for an if test?
For example if I have
class CTest
{
// ... various stuff
}
...
CTest t;
if(t){
// do something
}
What m...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20136815.html
Zones:
C++Date Answered: 06/17/2001 Grade: A Views: 0
I just bought and installed Linux-Mandrake 7.0. The install went fine except I set up the network during install, but none of the settings took, and I had to set it all up later. Now when I boo...
http://www.experts-exchange.com/OS/Linux/Setup/Q_10307071.html
Zones:
Linux SetupDate Answered: 03/09/2000 Grade: A Views: 0
I have developed a program that converts infix expressions to postfix and evaluates them, however, I would like to implement a unary minus ~ to represent negative numbers in my expressions. Does an...
http://www.experts-exchange.com/Programming/Languages/C/Q_20567036.html
Zones:
CDate Answered: 03/28/2003 Grade: A Views: 33
In STL, "bind2nd" is used to convert a binary prediate to unary predicate. I try to declare a unary predicate by bind2nd, but it does not work.
Please tell me the reason.
#include<functional...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20781957.html
Zones:
C++Date Answered: 03/12/2004 Grade: B Views: 19
class String
{
public:
//Constructors
String();
String(const char *const);
String(const String &);
~String();
private:
Str...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21205604.html
Zones:
C++Date Answered: 11/15/2004 Grade: A Views: 0
Can anyone tell me what's the most common cause of error: invalid type argument of 'unary *'?
http://www.experts-exchange.com/Programming/Languages/C/Q_21269594.html
Zones:
CDate Answered: 01/11/2005 Grade: A Views: 254