在 eVC 中使用通用头文件++ 3

发布于 2024-07-27 12:35:19 字数 365 浏览 9 评论 0原文

我正在学习 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别想她 2024-08-03 12:35:19

您需要将 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).

只有影子陪我不离不弃 2024-08-03 12:35:19

最近我看到一些 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文