Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 4 and Version 5 of code/FAQ


Ignore:
Timestamp:
Sep 25, 2008, 1:51:46 AM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/FAQ

    v4 v5  
    3939=== How can I convert typeX into typeY? ===
    4040Use [wiki:Convert] or [wiki:MultiType] too, it's almighty.
     41
     42=== What is std::string and what should I know about it? ===
     43std::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.
     44
     45=== What is std::list / std::set / std::map / std::vector / std::stack / std::queue / std::pair? ===
     46All those are STL containers. They're part of the C++ standard and available on every system. Read the [wiki:howto/STL page about STL usage] for help and more information.