本文介绍了奇怪的Qt代码与字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我找到了我的朋友的Qt代码,他对两个 QString
使用模运算符,如下所示:
I found my friend's Qt code and he uses the modulo operator on two QString
s like this:
QString result = oneString % twoString;
这是什么意思?
推荐答案
这是另一种(更高效的)连接 QString
的方法,如
It's just another (more efficient) way to concatenate QString
s as described in the manual
这篇关于奇怪的Qt代码与字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!