在过去的 30 分钟里,我一直在尝试将 const char 转换为 char。这就是我所拥有的。
string atr;
getline(cin,atr); // Start off with a string because getline takes nothing else.
const char *buffA = atr.c_str(); // Create a const char of the string converted to a const char.
char *buff = ""; // Create a new char to hold the converted result.
strcat(buff,buffA); // Do the conversion.
parseargs(buff); // Pass the data on.
但是,我得到一个未处理的异常。我不知道为什么。我实际上只是在控制台中输入了“try”作为我唯一的论点。