发布时间:2014-07-25 19:31:49
信号与槽作为QT的核心机制在QT编程中有着广泛的应用,本文介绍了信号与槽的一些基本概念、元对象工具以及在实际使用过程中应注意的一些问题。QT 是一个跨平台的C++ GUI应用构架,它提供了丰富的窗口部件集,具有面向对象、易于扩展、真正的组件编程等特点,更为引人注目的是目前Linux上最为流行的KDE桌面环境 就是建立在QT.........【阅读全文】
发布时间:2014-07-24 19:30:37
============zip文件的操作================================== zip -r data.zip data 解释:将data文件夹压缩成了data.zip格式。 unzip data.zip 解释:将data.zip文件解压到当前文件夹。 -----------------下面是一些详细的说明-------------------------- 1. 我想把一个文件abc.t.........【阅读全文】
发布时间:2014-07-24 15:02:56
static_caststatic_cast can perform conversions between pointers to related classes, not only upcasts (from pointer-to-derived to pointer-to-base), but also downcasts (from pointer-to-base to pointer-to-derived). No checks are performed during runtime to guarantee that th.........【阅读全文】