首页 > 代码库 > iostream与iostream.h乱弹琴
iostream与iostream.h乱弹琴
#include <iostream.h> 非标准输出流
#include <iostream> 标准输出流
看一小段eclipse上用android ndk时的简单代码,hello.cpp
#include <jni.h> #include <iostream.h> #include <string.h> #include <stdio.h> using namespace std; int main() { std::string s = "string"; printf("printf\n"); std::cout << "cout" << std::endl; return 0; }
Application.mk中,是这么写的
APP_ABI := armeabi APP_STL := stlport_static很幸运的出现了一下错误,
postypes.h:230:16: error: ‘mbstate_t‘ was not declared in this scope ...
...
ios:5:7: error: ‘_STLP_NEW_IO_NAMESPACE‘ has not been declared...
...
现在该怎么解决呢?
#include <iostream.h> -> #include <iostream>
APP_STL := stlport_static -> APP_STL := gnustl_static
“.h”非标准的,C的标准库函数,无".h"的,需要用命名空间,是C++的。
还有一些不完全是这个差别,比如math。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。