您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

main.cpp 192B

12345678910111213
  1. #include <QCoreApplication>
  2. #include "test.h"
  3. int main(int argc, char *argv[])
  4. {
  5. QCoreApplication a(argc, argv);
  6. Test t;
  7. t.testListen(6950);
  8. t.testNewConnection();
  9. return a.exec();
  10. }