摘要: makefile.mk #makefile.mk 公共头文件 ifndef TARGET # /root/make/src/test_include # notdir TARGET:=$(notdir $(shell pwd)) #test_include endif CXXFLAGS:=$(CXX 阅读全文
posted @ 2023-01-31 19:42 誓鼎 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 安装 yum 源 需要在系统上启用 MySQL 5.7 Community Release YUM 存储库。用于 yum 存储库配置的 rpm 包可在 MySQL 的官方网站上找到。 首先将最新的MySQL GPG密钥导入您的系统 sudo rpm --import https://repo.mys 阅读全文
posted @ 2023-01-31 11:24 誓鼎 阅读(3959) 评论(0) 推荐(0) 编辑
摘要: 1.KB2919442 https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=42153 2.clearcompressionflag.exe https://www.microsoft.com/zh-cn/download/de 阅读全文
posted @ 2023-01-10 17:50 誓鼎 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-12-23 17:37 誓鼎 阅读(191) 评论(0) 推荐(0) 编辑
摘要: g++ -std=c++11 -m64 -ggdb -ffunction-sections -O0 -I. -DDEBUG=1 -fPIC -c ftdc2c_ctp.cpp -o Debug/ftdc2c_ctp.o -MD -MF Debug/ftdc2c_ctp.dep g++ -shared 阅读全文
posted @ 2022-12-20 14:31 誓鼎 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 在计算机内存昂贵,处理能力有限的美好旧时光里,用比较黑客范的位运算方式去处理信息是首选方式(某些情况下只能如此)。时至今日,直接使用位运算仍然是很多计算领域中不可或缺的部分,例如底层系统编程,图形处理,密码学等。 Go 编程语言支持以下按位运算符: & bitwise AND | bitwise O 阅读全文
posted @ 2022-11-24 07:57 誓鼎 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1. strcov包中的 Itoa 和Atoi Itoa (用于将整数转换为字符串) 来源:早期c语言中没有string类型而是用字符数组arraya56爆大奖在线娱乐字符串,a56爆大奖在线娱乐 Itoa 是缩写于Int to Array Atoi(用于将字符串转换为整数) 来源:Array to Int 2. iota iot 阅读全文
posted @ 2022-11-24 06:42 誓鼎 阅读(692) 评论(0) 推荐(0) 编辑
摘要: 命令行指令 Git 全局设置 git config --global user.name "Administrator" git config --global user.email "admin@example.com" 创建新版本库 git clone http://192.168.200.80 阅读全文
posted @ 2022-11-18 09:49 誓鼎 阅读(16) 评论(0) 推荐(0) 编辑
摘要: MySQL查询时记录行号rownum MySQL查询显示行号MySQL查询显示行号MySQL流水号自MySQL自增行号 一、前言 Oracle中有rownum,实现查询的时候记录行号,MySQL中没有。 这可难不倒广大coder,咱们山寨一个出来, 请继续往下看。 二、定义一个变量 rownum变量 阅读全文
posted @ 2022-10-11 11:30 誓鼎 阅读(1305) 评论(0) 推荐(0) 编辑
摘要: golang 的fmt 包实现了格式化I/O函数,类似于C的 printf 和 scanf。 # 定义示例类型和变量 type Human struct { Name string } var people = Human{Name:"zhangsan"} 普通占位符 占位符 说明 举例 输出 %v 阅读全文
posted @ 2022-10-09 17:56 誓鼎 阅读(88) 评论(0) 推荐(0) 编辑