我有一个功能
getText();
它以这种方式工作
getText("This is a really nice text");
但它不起作用
std:string myString = "Also a nice text";
getText(myString);
为什么?
答案 0 :(得分:1)
我认为你的函数声明可能是这样的=> “getText(char * parameter)”
如果你的函数声明是这样的=> “getText(std :: string parameter)”
它应该正常工作