从指针返回对象

发布于 2024-11-04 01:03:01 字数 143 浏览 0 评论 0原文

void show(QString *s){
   //Here I want to show the value of the QString.
}

我怎样才能做到这一点?

如果你能帮助我,我会很高兴。

void show(QString *s){
   //Here I want to show the value of the QString.
}

How can I do that??

I'd be glad if you could help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稚然 2024-11-11 01:03:01

不确定你到底在问什么 - 请参阅我的评论。

也许这会有帮助?

查看 toAscii()toLatin1(), toUtf8()

const char* data = s->toAscii();  // if you want ASCII encoding
data = s->toUtf8();  // if you want UTF-8 encoding

// etc.

Not sure exactly what you're asking - see my comments.

Maybe this will help?

Check out toAscii(), toLatin1(), toUtf8()

const char* data = s->toAscii();  // if you want ASCII encoding
data = s->toUtf8();  // if you want UTF-8 encoding

// etc.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文