Changes between Version 7 and Version 8 of code/FAQ
- Timestamp:
- Sep 25, 2008, 2:06:04 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/FAQ
v7 v8 40 40 Use [wiki:Convert] or [wiki:MultiType] too, it's almighty. 41 41 42 === I had a look into util/Convert.h... what the hell is that? Hieroglyphics? === 43 Yes. 44 42 45 === What is std::string and what should I know about it? === 43 46 std::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.