gpt4 book ai didi

c++ - 如何在 Xcode 中运行 C++

转载 作者:行者123 更新时间:2023-11-28 07:37:24 24 4
gpt4 key购买 nike

我在 Xcode 4.6 中编写了一个 C++ 小程序。我使用了一个空的 C++ 类来创建文件,然后添加了一个简单的 Cocoa 应用程序模板,从而创建了作为目标的应用程序。

这是 .cpp 文件的内容:

#include "tempConv.h"
#include <iostream>
using namespace std;

int main() {
int temp;
char inputScale = 'X';

cout << "Enter temp:";
cin >> temp;
cout << "Enter F or C:";
cin >> inputScale;

if (inputScale=='F') {
temp = (temp - 32) * 5 / 9;
cout << "Centigrade equivalent is " << temp << endl;
}
else if (inputScale=='C') {
temp = (temp * 9 / 5) + 32;
cout << "Fahrenheit equivalent is " << temp << endl;
}

else {
cout << "Invalid input - try again later" << endl;
}
return 0;
}

C++文件有main,所以需要压制应用自带的标准main.m。

当我运行文件时,它没有以任何方式连接到 UI。输入和输出显示在调试输出 View 中。

有没有办法从 main.m 文件调用 cpp 文件,或者有其他方法将它连接到 UI?

最佳答案

当您启动项目时,将其设为命令行应用程序,然后您可以使用任何您想要的语言

关于c++ - 如何在 Xcode 中运行 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16508803/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com