vote up 1 vote down star
class logger {
 ....
};

logger& operator<<(logger& log, const std::string& str)
{
    cout << "My Log: " << str << endl;
    return log;
}

logger log;
log << "Lexicon Starting";

Works fine, but i would like to use a pointer to a class instance instead. i.e.

logger * log = new log();
log << "Lexicon Starting";

Is this possible? If so what is the syntax? Thanks

Edit: The compiler Error is

error: invalid operands of types 'logger*' and 'const char [17]' to binary 'operator<<'
flag

5 Answers

vote up 8 vote down check

You'd have to dereference the pointer to your logger object and obviously check if it's not 0. Something like this should do the job:


  log && ((*log) << "Lexicon starting")

As a general aside, I would shy away from referencing objects like a logger (which you normally unconditionally expect to be present) via a pointer due to the uncertainty you get with a pointer, AKA is there an object or not?

link|flag
Agreed. Create the logger during program initialisation, and then provide a way to get a reference rather than a pointer to it. Alternatively, use std::cerr as your logger by reopening it to point to a file (although this requires some work as its slightly hacky :)) – workmad3 Mar 9 at 13:29
Oh, and make sure you use correct brackets on this. log && ((*log) << "Lexicon starting") to ensure things go right :) – workmad3 Mar 9 at 13:30
Good idea, thanks for pointing that out... – Timo Geusch Mar 9 at 14:10
vote up 1 vote down

Why not use a reference?

logger & log = *(new log()); 
// the above is abhorrent code that 
// should be replaced by something meaningful

log << "Lexicon Starting";

if this isn't what you want I'd go with Timo Geusch, even if it is ugly

link|flag
vote up 0 vote down

Not really. new log( ) has pointer type, "Lexicon starting" has type const char[16]. You can only overload operators if at least one argument has a user-defined type.

decasteljau correctly remarked that you could do this via (*log), if you wanted the pointer. I don't like the pointer, however. Andrei Alexandrescu devotes quite a few pages on smart logger singletons in "Modern C++ Design", might be worth to consult that.

link|flag
vote up 1 vote down

Depending on the context where you get your logger from, you might want to return a reference instead of a pointer:

...
Logger& logger() {
    return *_pLogger;
}
...

Logger& log = logger();
log << "...";
link|flag
Why might he want to do this? – Neil Butterworth Mar 9 at 13:30
It seems to me that he gets his logger instance from some class structure where it might be more useful to return the reference than the pointer to the internal logger implementation. As I said: 'Depending on the context'. – Ferdinand Beyer Mar 9 at 13:42
vote up 7 vote down

Here is the way:

logger * log = new log();
(*log) << "Lexicon Starting";
link|flag

Your Answer

Get an OpenID
or

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