终于建了一个自己个人小站:https://huangtianyu.gitee.io,以后优先更新小站博客,欢迎进站,O(∩_∩)O~~
一向觉得iostream这个头文件可以随便包含,肯定不会出错,然后今天在开发jni的时候却遇到:fatal error: iostream: No such file or directory,通过寻找Google给了我很好的解答,这里给上对应的解答地址:http://*.com/questions/9130429/android-ndk-build-iostream-no-such-file-or-directory。方法如下:
在工程的Application.mk里面加上这样一句话
APP_STL:=stlport_static
就解决了。