gpt4 book ai didi

c++ - linux系统功能

转载 作者:搜寻专家 更新时间:2023-10-31 01:54:59 25 4
gpt4 key购买 nike

下面是我编写的一个程序,当我输入我希望它执行的 linux 命令时,它运行良好

include iostream
include string
using namespace std;

int main()
{
cout << "The directory!";

system("cd CS_204");

return 0;
}

然而,在下面我试图做到这一点,以便用户可以输入他们想要的命令,但我知道他们无法将 std::string 转换为 const char*这是我第一次使用该功能,我拼命地试图理解它。帮忙!!

int main()
{
cout << "The directory!";

string word;


cin >> word

if(word != "A")
system(word);

return 0;
}

最佳答案

在第二种情况下,wordstd::string 类型并且不等同于 const char* 。您需要使用成员函数 std::string::c_str() 获取 c 风格的字符串

system(word.c_str());  // This will convert to a c style string.

关于c++ - linux系统功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8935939/

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