首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏我是业余自学C/C++的

    循环链表(测试代码,Qt5.1 for windows)

    循环链表的原理很简单,这里就不在赘述。下面是循环链表的测试代码: 主函数所在文件: circularlistwithheader.cpp /* * 主函数 */ #include<iostream> #include "circularlistwithheader.h" using namespace std; int main(int argc, char *argv[]) { //测试构造函数 circularListWithHeader<int>y,z; cout<<

    1.1K40发布于 2018-05-28
  • 来自专栏我是业余自学C/C++的

    箱子排序(测试代码Qt5.1 for mac)

    ---- binSort.cpp /* * 这里是主函数的执行文件 * binSort.cpp */ #include<iostream> #include"studentrecord1.h" #include"chainwithiterator.h" #include"myexceptions.h" void binSort(chain<studentRecord>& theChain,int range) { chain<studentRecord> *bin; b

    54050发布于 2018-05-28
  • 来自专栏我是业余自学C/C++的

    线性表——数组描述(Qt5.1测试代码 for windows)

    ---- 主函数: // test the class arrayList that uses STL algorithms #include<iostream> #include "linearList.h" #include "arrayList.h" using namespace std; int main() { // test constructor linearList<double> *x = new arrayList<double>(20); arrayList<i

    58620发布于 2018-05-28
  • 来自专栏c++ 学习分享

    QT5.1编译后的安装目录问题(硬路径问题)

    QT5.1编译后的安装目录问题(硬路径问题) 这个是我的编译参数: configure -ltcg -confirm-license -opensource -platform win32-msvc2010

    53820编辑于 2023-07-06
  • 来自专栏用户2442861的专栏

    qt widget设置Qt::FramelessWindowHint和Qt::WA_TranslucentBackground, 会出现一个bug: 在最小化后还原时界面停止刷新

    );//and return to your old flags this->showNormal(); } } } Qt 真是各种坑呐 补充: 该方法对qmainwindow无效, 在Qt5.1

    2.6K20发布于 2018-09-20
  • 来自专栏c++ 学习分享

    qt initialized in the dll

    I really love this library :) But currently I have a problem with a project being migrated to Qt5.1 from Now I have migrated to Qt5.1 and it seems QWinMigrate does not process queued events anymore.

    46520编辑于 2023-07-06
  • 来自专栏我是业余自学C/C++的

    线性表-数组描述

    ,element+listSize,element+listSize+1); element[theIndex] = theElement; listSize++; } ---- 以下是可以在Qt5.1

    87130发布于 2018-05-28
领券