Qt学习之路—containers(1)

August 7th, 2013 by JasonLe's Tech 1,586 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)

图解Git

August 7th, 2013 by JasonLe's Tech 1,371 views

» Read more: 图解Git

Qt学习之路—–使用QObject来创建线程

August 6th, 2013 by JasonLe's Tech 2,398 views

QT首先为我们提供了信号和槽的机制,且该机制原生支持跨线程。 » Read more: Qt学习之路—–使用QObject来创建线程

Qt学习之路—–SIGNAL & SLOT

August 6th, 2013 by JasonLe's Tech 1,469 views

今天学习了QtGUI与QThread结合的例子,写了一个发射信号量的记时程序。

» Read more: Qt学习之路—–SIGNAL & SLOT

Qt学习之路—–QThread QMutex

August 6th, 2013 by JasonLe's Tech 1,645 views

今天学习Qt的Thread库与信号量。

在qt中,开启线程,只需开启 » Read more: Qt学习之路—–QThread QMutex