在 eVC 中使用通用头文件++ 3
我正在学习 C++,我的计算机中安装了 eVT(eMbedded Visual Tools),因为我的 VB Pocket 程序需要 eVB 3(eMbedded Visual Basic),但我正在学习 C++,然后我想使用 eVC++ 3 为了开发一些命令行应用程序,然后只是为了测试我创建了一个 HelloWorld 应用程序,只是为了测试,但是当我尝试编译它时给了我这个错误:
致命错误 C1083:无法打开包含文件:'iostream':没有这样的文件或目录 执行clarm.exe 时出错。
请记住,我无法更新到 eVC++ 4,因为我想为 Windows CE 3.1 构建程序 谢谢!
I'm learning C++ and i have the eVT(eMbedded Visual Tools) installed in my computer, because of the eVB 3(eMbedded Visual Basic) for my VB pocket programs, but i'm learning C++, then i want to use the eVC++ 3 for develop some command line aplications, then only to test i created an HelloWorld aplication, just for test, but when i try to compile it gave me this error:
Fatal error C1083: Cannot open include file: 'iostream': No such file or directory
Error executing clarm.exe.
Remember that i can't update to eVC++ 4, because i want to build programs for Windows CE 3.1
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将
ostream
文件所在目录的路径添加到编译器包含路径列表中(通常是-I
指令)。You need to add the path to the directory where
ostream
file resides to the list of the compiler include paths (usually-I
directive).最近我看到一些 eVC++ 示例,正如我所见,eVC++(记住:Plus Plus)仅使用 C(不带 ++)代码。
Recently i see some eVC++ example and as i can see, eVC++(remember: Plus Plus) only uses C(Without ++) code.