STL Vector, deque or containers equivalent for Android?
Simple question: I know that the STL library is not provided inside the Android NDK. Otherwise, I would like to use containers like vector, deque and so 开发者_如何学Goon.
Does anyone know if equivalent objects exist for Android NDK or should I develop mine ?
Thanks!
You can use STLPort (http://www.stlport.org/), which contains all the STL classes and has been ported to Android. Please have a look at answer of another question at uSTL or STLPort for Android?
精彩评论