上一页 1 2 3 4 5 6 7 8 9 ··· 46 下一页
摘要: #include <iostream> #include<thread> using namespace std; struct MyStruct { int a = 0; string s = "abc雷"; };//线程入口 void proc(MyStruct& a) { for (int m 阅读全文
posted @ 2023-12-24 14:37 81 阅读(20) 评论(0) 推荐(0) 编辑
摘要: C++ 引用Lib和Dll的方法总结_c++引用lib-CSDN博客 C++引用C++ dll(动态链接库)中的命名空间,类_c++ dll 继承类-CSDN博客 无论是动态库或静态库,都可导出函数和类 阅读全文
posted @ 2023-12-22 16:04 81 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 原文: Windows下Nginx的启动、停止等命令_nginx windows 启动命令-CSDN博客 启动: start nginx 或nginx.exe //前一个在后台运行,使用默认配置文件 nginx.exe -c 配置文件 //指令配置文件 停止: nginx -s stop 或ngin 阅读全文
posted @ 2023-12-16 22:16 81 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 在连接Firebird4数据库时,使用以下: FbDataAdapter da = new FbDataAdapter(sql, this.cnstring); DataTable dt = new DataTable(); da.Fill(dt); return dt; 在一直的相像中,FbDat 阅读全文
posted @ 2023-12-15 13:24 81 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 官方文档: https://mariadb.com/kb/en/getting-started-with-myrocks/ TokuDB引擎已停止维护,现在使用MyRocks引擎 默认没有引用,可在[mysqld]下面加以下参数来启动。 [mysqld]plugin_load_add = ha_ro 阅读全文
posted @ 2023-12-06 16:31 81 阅读(72) 评论(0) 推荐(0) 编辑
摘要: PDF Converter - Convert files to and from PDFs Free Online (smallpdf.com) 好像只支持小文件免费,不过大文件可以先切成小文件 阅读全文
posted @ 2023-11-28 17:03 81 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 在.NET FX 4.8项目中使用C# 8/9/10的新语法 吴冬wdhust Innovative BIM techniques 受到某些特殊原因的限制,有时候.NET项目被锁死在.NET Framework 4.8,而无法升级到.NET 5等更高版本,导致代码中能够使用的C#语法最高只能支持到C 阅读全文
posted @ 2023-11-27 16:14 81 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 原文: 对 .NET程序2G虚拟地址紧张崩溃 的最后一次反思 - 一线码农 - 博客园 (cnblogs.com) https://www.cnblogs.com/huangxincheng/p/17853851.html 第1步:使用 DnSpy工具修改exe的文件头 Large Address 阅读全文
posted @ 2023-11-25 15:06 81 阅读(177) 评论(0) 推荐(0) 编辑
摘要: int count = Environment.ProcessorCount; //取得cpu的内核数 ThreadPool.GetMaxThreads(out int w1, out int h1); //默认是 2028,若设置的数量小于cpu的内核数,则返回false表示无效,仍是2048,所 阅读全文
posted @ 2023-11-21 13:31 81 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 发topic代码,创建交换器,数据直接按routingKey发送到交换器中,即不需要定义队列: using (var connection = factory.CreateConnection()) { using (var channel = connection.CreateModel()) { 阅读全文
posted @ 2023-11-20 15:11 81 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 46 下一页