回 帖 发 新 帖 刷新版面

主题:[讨论]怎么将CString将定义字符串作为变量或参数来使用?

怎么CString将定义字符串作为变量或参数来使用?
即CString str="abc",如何将str的值改变,且可以作为函数的参数来使用?

回复列表 (共1个回复)

沙发

用引用, 如:
fun(CString&  str)
{
  str = "def";
}
你直接把str传过去,就可以把它的值改成"def"了

我来回复

您尚未登录,请登录后再回复。点此登录或注册