Chinaunix首页 | 论坛 | 博客
  • 博客访问: 422998
  • 博文数量: 71
  • 博客积分: 1525
  • 博客等级: 上尉
  • 技术积分: 605
  • 用 户 组: 普通用户
  • 注册时间: 2011-08-05 17:28
文章分类

全部博文(71)

文章存档

2012年(21)

2011年(50)

分类: LINUX

2012-02-28 20:47:02

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); // x == "airship"

See also append() and insert().

阅读(1551) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~