CannibalSmith (cannibalsmith) rakstīja koderi kopienā, @ 2007-11-15 21:17:00 |
|
|||
class String { public: operator char*() { return string; } protected: char* string; }; void whatever(const char* arg) { } void funkcija(const String& stuff) { whatever(stuff); }Kāpēc
const
iekš funkcija
neļauj veikt konversiju?