字符串变量作为函数的输入

时间:2014-11-26 09:29:25

标签: c++

我有一个功能

getText();

它以这种方式工作

getText("This is a really nice text");

但它不起作用

std:string myString = "Also a nice text";
getText(myString);

为什么?

1 个答案:

答案 0 :(得分:1)

我认为你的函数声明可能是这样的=> “getText(char * parameter)”

如果你的函数声明是这样的=> “getText(std :: string parameter)”

它应该正常工作