Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 7 and Version 8 of code/FAQ


Ignore:
Timestamp:
Sep 25, 2008, 2:06:04 AM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/FAQ

    v7 v8  
    4040Use [wiki:Convert] or [wiki:MultiType] too, it's almighty.
    4141
     42=== I had a look into util/Convert.h... what the hell is that? Hieroglyphics? ===
     43Yes.
     44
    4245=== What is std::string and what should I know about it? ===
    4346std::string is part of the C++ standard. It's more than just a char array: It provides several useful functions, is much easier, more flexible and more safe. But this is not Java, so you will still get a crash if you access a char outside the range of the string. Read the [http://www.cplusplus.com/reference/string/string/ reference] for more information.