随笔分类 -  c++语言

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页

c++语言
Qt MetaObject 详解
摘要:Qt MetaObject 详解 Qt MetaObject 详解 Qt MetaObject 详解 阅读全文

posted @ 2023-12-30 05:12 lydstory 阅读(12) 评论(0) 推荐(0) 编辑

const static 统一定义buffer大小
摘要:#include <iostream> #include <string> using namespace std; #include <stdint.h> #include <stdio.h> #include <stdlib.h> typedef uint32_t u32; typedef ui 阅读全文

posted @ 2023-12-30 04:37 lydstory 阅读(11) 评论(0) 推荐(0) 编辑

enum例子
摘要:#include <iostream> #include <string> using namespace std; #include <stdint.h> #include <stdio.h> #include <stdlib.h> typedef uint32_t u32; typedef ui 阅读全文

posted @ 2023-12-30 04:19 lydstory 阅读(8) 评论(0) 推荐(0) 编辑

__attribute__((packed,aligned(1)))
摘要:#include <iostream> #include <string> using namespace std; #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <stdint.h> #ifdef WIN32 阅读全文

posted @ 2023-12-30 03:05 lydstory 阅读(62) 评论(0) 推荐(0) 编辑

botan c++加密算法库
摘要:botan c++加密算法库 botan c++加密算法库 botan c++加密算法库 botan c++加密算法库 阅读全文

posted @ 2023-12-29 05:44 lydstory 阅读(49) 评论(0) 推荐(0) 编辑

域天YT88 加密狗
摘要:域天YT88 域天YT88 阅读全文

posted @ 2023-12-29 05:32 lydstory 阅读(94) 评论(0) 推荐(0) 编辑

【chatgpt]代码转换
摘要:char DiskBuff[MAX_PATH] = {0}; DWORD Len=GetLogicalDriveStrings(0,0);//获取盘符的长度 char *Driver=new char[Len];//字符数组 memset(Driver,0,Len); GetLogicalDrive 阅读全文

posted @ 2023-12-27 14:43 lydstory 阅读(46) 评论(0) 推荐(0) 编辑

openssl编译
摘要:./config \ shared \ threads \ zlib-dynamic \ 阅读全文

posted @ 2023-12-27 13:00 lydstory 阅读(9) 评论(0) 推荐(0) 编辑

解决libevhtp使用时报错undefined reference to `bufferevent_openssl_socket_new'
摘要:解决libevhtp使用时报错undefined reference to `bufferevent_openssl_socket_new' https://zhuanlan.zhihu.com/p/390331882?utm_id=0 阅读全文

posted @ 2023-12-27 08:43 lydstory 阅读(97) 评论(0) 推荐(0) 编辑

ISO C++17 does not allow dynamic exception specifications
摘要:错误描述 提示C++17不支持动态异常规格。 解决步骤: 1、安装低版本的g++及gcc(如g++-9及gcc-9) sudo apt-get install gcc-9sudo apt-get install g++-9 2、设置默认编辑器 sudo update-alternatives --i 阅读全文

posted @ 2023-12-26 11:21 lydstory 阅读(1126) 评论(0) 推荐(0) 编辑

google-gflag编译问题
摘要:编译报错如下: /usr/bin/ld: /usr/local/lib/libgflags.a(gflags.cc.o): relocation R_X86_64_PC32 against symbol `stderr@@GLIBC_2.2.5' can not be used when makin 阅读全文

posted @ 2023-12-26 11:16 lydstory 阅读(190) 评论(0) 推荐(0) 编辑

CMake Error at /usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
摘要:sudo apt install libboost-all-dev 阅读全文

posted @ 2023-12-26 10:15 lydstory 阅读(459) 评论(0) 推荐(0) 编辑

基于libuv的vpn开发
摘要:基于libuv的vpn开发 基于libuv的vpn开发 基于libuv的vpn开发 基于libuv的vpn开发 基于libuv的vpn开发 阅读全文

posted @ 2023-12-24 07:36 lydstory 阅读(1) 评论(0) 推荐(0) 编辑

RapidJSON
摘要:RapidJSON 是一个 C++ 的 JSON 解析器及生成器。它的灵感来自 RapidXml。 RapidJSON 小而全。它同时支持 SAX 和 DOM 风格的 API。SAX 解析器只有约 500 行代码 【chatgpt】 RapidJSON、cJSON 和 JsonCpp 都是 JSON 阅读全文

posted @ 2023-12-24 06:24 lydstory 阅读(67) 评论(0) 推荐(0) 编辑

打洞数据
摘要:打洞数据 打洞数据 打洞数据 阅读全文

posted @ 2023-12-24 05:16 lydstory 阅读(4) 评论(0) 推荐(0) 编辑

Snappy
摘要:Snappy 是一个 C++ 的用来压缩和解压缩的开发包。其目标不是最大限度压缩或者兼容其他压缩格式,而是旨在提供高速压缩速度和合理的压缩率。Snappy 比 zlib 更快,但文件相对要大 20% 到 100%。在 64位模式的 Core i7 处理器上,可达每秒 250~500兆的压缩速度。 阅读全文

posted @ 2023-12-24 04:49 lydstory 阅读(26) 评论(0) 推荐(0) 编辑

vpn_uv-master
摘要:vpn本质上是网卡驱动,socks5是代理服务器 vpn本质上是网卡驱动,socks5是代理服务器 vpn本质上是网卡驱动,socks5是代理服务器 https://blog.csdn.net/qq_27053493/article/details/98003960 阅读全文

posted @ 2023-12-24 04:06 lydstory 阅读(3) 评论(0) 推荐(0) 编辑

原理图与PCB篇(一)mil和mm之间的换算
摘要:mil(中文译音:密耳),即千分之一英寸,等于0.0254mm(毫米)。 常用直径尺寸的密尔与毫米换算如下: 1.0mil = 0.025mm 1.2mil = 0.030mm 1.25mil = 0.032mm 原理图与PCB篇(一)mil和mm之间的换算_pcb元件封装尺寸mil与mm换算-CS 阅读全文

posted @ 2023-12-12 18:10 lydstory 阅读(678) 评论(0) 推荐(0) 编辑

合宙
摘要:合宙 合宙 合宙 阅读全文

posted @ 2023-12-11 23:53 lydstory 阅读(15) 评论(0) 推荐(0) 编辑

PKI cfssl
摘要:p12证书 OTP :一次性有效密码 根CA: cfssl :操作 PSK...... 阅读全文

posted @ 2023-12-11 23:49 lydstory 阅读(4) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示