Acording to http://www.cplusplus.com/reference/iostream/ostream/operator%3C%3C/ the operator<< method defined on e.g. streambuf is a member of ostream, but for char / char * it is a global function. What's the design decision behind this difference?
|
feedback
|
|
My guess is that it's due to retro-compatibility issues emerged while C++ was being defined: maybe older code was relaying on a member The C++ standard library (and also STL) have a number of dishomogeneity like this one. | |||
feedback
|
operator<<()does/would belong toostreamregardless of the type of the element being operated on. (I'll blame low caffeine levels...) I've now deleted this misleading comment. Also: good question! – j_random_hacker Jan 31 '11 at 1:18