菜鸟教程小白 发表于 2022-12-13 14:41:16

c++ - 如何在 xcode 4.3 中包含 C++ 标准库


                                            <p><p>我正在尝试在我的 ios 应用程序中使用 C++ 代码(我真的不喜欢 Objective-C ,我只会在必要时使用它[查看控件等]),虽然一切似乎都在工作,但我在以下测试文件中出现错误。</p>

<pre><code> #ifndef prueba3_GlobalStatic_h
#define prueba3_GlobalStatic_h
#include &lt;string&gt;

using namespace std;

class GlobalStatic
{
public:
   GlobalStatic();
   ~GlobalStatic();
   string foo();

private:
   int integerValue;
};

#endif
</code></pre>

<p>当我尝试构建项目时,IDE 出现以下错误:
“未找到‘字符串’文件”
我环顾四周,但找不到确凿的答案;任何帮助,将不胜感激。本质上,我如何让标准库正常工作?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>缺少 c++header 的一个原因是从 Objective-c 上下文中包含它们,而不是从 Objective-c++ 中包含它们——并且您不能使用 c 中的 c++ STL!更简单的解决方案是将所有 .m 文件更改为 .mm,.mm 会将它们发送到 Objective-c++ 编译器。</p></p>
                                   
                                                <p style="font-size: 20px;">关于c&#43;&#43; - 如何在 xcode 4.3 中包含 C&#43;&#43; 标准库,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11436369/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11436369/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c&#43;&#43; - 如何在 xcode 4.3 中包含 C&#43;&#43; 标准库