string类型变量拼接:
QString & QString::
prepend ( const
QString &
str )
Prepends the string str to the beginning of this string and returns a reference to this string.
Example:
QString x
= "ship";
QString y
= "air";
x
.prepend(y);
See also append() and insert().
阅读(1551) | 评论(0) | 转发(0) |