我在使用 QT C++ 创建我的移动程序时遇到了一些问题当我运行它时,我得到了这个:cannot convert 'std::string' to 'std::string*' in initialization
还有那个错误的代码:
void rozvrh_b17::pars(string par)
{
data = new std::string*(par);
printf(data->data());
}
//data and par are std::string
//without that new std::string*() it does similiar error
我问如何将 std::string 转换为 std::string* ??
编辑:我做了这个函数来将数据从一种形式传输到另一种形式,我需要记住那个参数......