Posts Tagged ‘Qt开发’

Qt学习之路——QUDP

September 13th, 2013

UDP不用怎么介绍吧,算了。。。。还是写出来好了。。。。。
» Read more: Qt学习之路——QUDP

Qt学习之路——Asynchronous QTcpServer with QThreadPool

September 13th, 2013

上一节,我们学习了QTcpSocket using multiple thread ,但是我们都知道Server一般都要维持大量的connections,导致Server需要频繁的申请分配内存等资源,如果我们使用ThreadPool,一次性分配一定量的资源,这样就避免了频繁的资源申请销毁。 » Read more: Qt学习之路——Asynchronous QTcpServer with QThreadPool

Qt学习之路——QTcpSocket using multiple thread

September 11th, 2013

之前在暑假我学习了QThead类,只要我们继承这个类,就可以轻松地创建多线程函数。 » Read more: Qt学习之路——QTcpSocket using multiple thread

Qt学习之路——QHttp,QTcpSocket与QAbstractSocket

September 9th, 2013

好久没有学习Qt了,因为研究生开学,各种杂事,使得qt学习之路中断了一段时间,最近良心发现,要重拾qt,qt封装好了socket库,这使得我们我们调用socket库来创建网络应用相当快捷。比如用qt来下载一个文件,访问webserver都可以方便的使用。 » Read more: Qt学习之路——QHttp,QTcpSocket与QAbstractSocket

Qt学习之路——QFileSystemModel&QStandardItemModel

August 12th, 2013

今天学习了QFileSystemModel,这个Model与QStringListModel类似,但是更加灵活。 » Read more: Qt学习之路——QFileSystemModel&QStandardItemModel