您不必从头开始完成整个代码。问题出在main里面的execl(..)语句中。代码是 -
#include <cstdio>
#include <iostream>
#include <cstring>
#include <unistd.h>
#include <sys/wait.h>
#include <vector>
#define li long int
using namespace std;
char TypedCommandInTerminal[1001];
vector <string> ValidCommands,TypedCommand;
void ShowTerminal()
{
cout<<"User:$ ";
gets(TypedCommandInTerminal);
}
void PushCommands()
{
ValidCommands.push_back("mkdir");
}
void GetCommandIntoVector()
{
TypedCommand.clear();
char *p = strtok(TypedCommandInTerminal," ");
while(p)
{
TypedCommand.push_back(p);
p = strtok(NULL," ");
}
}
bool MatchCommand(string Command)
{
li i;
for(i=0;i<ValidCommands.size();i++)
{
if(ValidCommands[i].compare(Command)==0)
{
return true;
}
}
return false;
}
int main()
{
int status;
string StoredCommand;
PushCommands();
while(true)
{
ShowTerminal();
if(fork()!=0)
{
waitpid(-1,&status,0);
}
else
{
GetCommandIntoVector();
if(MatchCommand(TypedCommand[0]))
{
StoredCommand = "mkdir";
if(StoredCommand.compare(TypedCommand[0])==0)
{
execl("/bin/mkdir","mkdir",TypedCommand[1],NULL);/*ERROR*/
}
}
else
{
cout<<"Command Not Available\n";
return -1;
}
}
}
return 0;
}
我正在尝试在linux中使用c ++设计一个简单的终端。我在这里要做的是 - 在控制台中将此命令作为输入 - &#34; mkdir ab&#34; 。然后我设法将这个字符串标记化并保持&#34; mkdir&#34;在TypedCommand [0]和&#34; ab&#34;在TypedCommand [1]中。问题是当我写&#34; TypedCommand [1]&#34;在execl编译器内部给出一个错误 - &#34;不能传递非平凡可复制类型的对象.....&#34; 我删除了TypedCommand [1]并手动编写了#34; ab&#34;代替它。代码运行并创建了一个名为&#34; ab&#34;的文件夹。在执行目录中。看起来像execl工作得很好。
我需要以某种方式在execl中传递保存在TypedCommand [1]中的第二个字符串......这里有什么问题?
答案 0 :(得分:7)
您将std::string
对象作为可选参数传递给函数(execl
接受可变数量的参数)。 std::string
有非平凡的构造函数,析构函数等,不能以这种方式使用。在这种情况下,你想要传递一个指向字符串的指针,所以改变
execl("/bin/mkdir","mkdir",TypedCommand[1],NULL);
到
execl("/bin/mkdir","mkdir",TypedCommand[1].c_str(),NULL);