上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: lua windows下编译 - g_che - 博客园 (cnblogs.com) 阅读全文
posted @ 2021-06-09 17:38 黑马网仔 阅读(16) 评论(0) 推荐(0) 编辑
摘要: lua table操作实例详解 lua_gettable_linuxheik的专栏-CSDN博客_lua_gettable 阅读全文
posted @ 2021-06-04 16:10 黑马网仔 阅读(124) 评论(0) 推荐(0) 编辑
摘要: (1条消息) Lua初学者(四)--Lua调用原理展示(lua的堆栈)_猪猪侠的点滴-CSDN博客_lua 堆栈 阅读全文
posted @ 2021-06-03 15:59 黑马网仔 阅读(109) 评论(0) 推荐(0) 编辑
摘要: Linux添加环境变量与GCC编译器添加INCLUDE与LIB环境变量 对所有用户有效在/etc/profile增加以下内容。只对当前用户有效在Home目录下的.bashrc或.bash_profile里增加下面的内容:(注意:等号前面不要加空格,否则可能出现 command not found)# 阅读全文
posted @ 2020-12-21 11:41 黑马网仔 阅读(606) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zhangzheng_1986/article/details/83892891 阅读全文
posted @ 2020-12-09 10:44 黑马网仔 阅读(120) 评论(0) 推荐(0) 编辑
摘要: QStandardItemModel 常用api QStandardItemModel model; 增: 添加列: 第一种方法: void setHorizontalHeaderLabels(const QStringList &labels) 第二种方法: void appendColumn(c 阅读全文
posted @ 2020-12-03 09:39 黑马网仔 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef THREADTEST1_H 2 #define THREADTEST1_H 3 4 #include <QObject> 5 #include <QThread> 6 #include <QDebug> 7 #include <QRandomGenerator> 8 #inclu 阅读全文
posted @ 2020-12-02 18:04 黑马网仔 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 class Student{ 2 3 public: 4 5 QString name; 6 int age; 7 double score; 8 9 Student(const QString& _name = "", int _age = 0, double _score = 0.0) 10 阅读全文
posted @ 2020-12-02 17:52 黑马网仔 阅读(1704) 评论(1) 推荐(1) 编辑
摘要: 在整理mfc程序的时候, 为了清理项目资源, 经常需要删除项目目录或其子目录下(递归)的Debug, Release, x64, .vs等文件目录, 如果有很多项目, 手工清理很是麻烦, bat不太熟悉, 没找到合适的脚本, 自己用python写了一个清理的小脚本, 使用用例: python dem 阅读全文
posted @ 2020-11-27 17:07 黑马网仔 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 1 import socket 2 import time 3 4 if __name__ == '__main__': 5 mysocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 6 host_port = ("127.0.0.1", 阅读全文
posted @ 2020-11-27 16:51 黑马网仔 阅读(86) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页