Is the STL efficient enough for mobile devices?

Posted by mx2 on Game Development See other posts from Game Development or by mx2
Published on 2011-09-28T13:40:02Z Indexed on 2012/06/15 15:28 UTC
Read the original article Hit count: 303

Filed under:
|
|
|

When it comes to mobile game development on iOS and Android NDK, some developers write their own C++ containers, while others claim that STL is more than adequate for mobile game development (For example, the author of iPhone 3D Programming uses STL rather than Objective-C in his examples. His defense is that STL is no slower than Objective-C).

Then there are also mobile developers who abandon C++ entirely and develop games entirely (or mostly) in the C language (C89/C90).

What are the benefits and drawbacks of each approach?

© Game Development or respective owner

Related posts about c++

Related posts about android