下面来讲解一下qSort() qCopy()qFill()的用法。 » Read more: Qt学习之路——QtAlgorithms
把一个库开源,你该做些什么
August 8th, 2013 by JasonLe's Tech 1,464 views把一个库[1]开源非常简单,仅需几秒钟。你所需要做的就是把公共仓库(public repository) 托管 (hosted) 在网上(GitHub、 Bitbucket 等)么?不是的!事实上,如果你想把你的项目公开,并加以悉心维护的话[2],那对每个人都是件好事情。来看看我们该怎么做 » Read more: 把一个库开源,你该做些什么
Qt学习之路—containers(3)
August 8th, 2013 by JasonLe's Tech 1,509 views下面介绍QMap<T> QHash<T> QStringList<T> » Read more: Qt学习之路—containers(3)
Qt学习之路—containers(2)
August 7th, 2013 by JasonLe's Tech 1,759 views下面介绍QLinklist<T> » Read more: Qt学习之路—containers(2)
Qt学习之路—containers(1)
August 7th, 2013 by JasonLe's Tech 1,534 views今天学习了QList<T> list 类 与 迭代器QListIterator<T> QMutableListIterator<T> iter(list)
QMutableListIterator<T> allows you to iterate over a QList<T> (or a QQueue<T>) and modify the list. If you don’t want to modify the list (or have a const QList), use the slightly faster QListIterator<T> instead. » Read more: Qt学习之路—containers(1)