2022年2月15日
摘要: 在Linux下编译通过后,把代码拷贝到window上,不要删除build目录;在windows山删除build目录中所有文件,然后在进入到Windows命令行模式(win10在系统菜单附近有个搜索放大镜,点击放大镜,在最下面搜索输入框中输入:cmd,然后回车),进入到源码中的build目录中;在bu 阅读全文
posted @ 2022-02-15 19:26 北京开发 阅读(319) 评论(0) 推荐(0)
  2022年1月4日
摘要: 当前小时(或者当前秒)的当前内存地址可以拼接成一个唯一的数值。 阅读全文
posted @ 2022-01-04 20:54 北京开发 阅读(39) 评论(0) 推荐(0)
  2021年12月30日
摘要: ubuntu 安装 c语言的库函数man手册 拷贝自: weixin_33787529 2018-06-30 08:03:00 420 收藏 1 文章标签: c/c++ 版权 安装 1、C语言库函数基本的帮助文档 sudo apt-get install manpages sudo apt-get 阅读全文
posted @ 2021-12-30 17:09 北京开发 阅读(90) 评论(0) 推荐(0)
  2021年12月18日
摘要: #include <stdio.h>#include <string.h>#include <iostream>#include <vector>#include <map> struct info_keep_level_data_top_stru_t{ char data_name[24]; in 阅读全文
posted @ 2021-12-18 09:23 北京开发 阅读(107) 评论(0) 推荐(0)
  2021年12月2日
摘要: #include <stdio.h>#include <stdlib.h> #include <map>#include <vector>#include <iostream>using namespace std; struct m_info_url_hash_id_t { unsigned lo 阅读全文
posted @ 2021-12-02 19:09 北京开发 阅读(213) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <string.h>#include <stdlib.h>#include <vector>#include <iostream> typedef struct ubit256_t { unsigned int i1; unsigned int 阅读全文
posted @ 2021-12-02 19:04 北京开发 阅读(224) 评论(0) 推荐(0)
  2021年11月25日
摘要: #include <stdio.h>#include <stdlib.h> #include<iostream>using namespace std; int main(int argc, char *argv[]){ unsigned short k3, k1, k2, k4; unsigned 阅读全文
posted @ 2021-11-25 21:37 北京开发 阅读(50) 评论(0) 推荐(0)
  2021年11月20日
摘要: C语言:宽字符集操作函数(unicode编码) 拷贝自 : weixin_30326741 2014-10-16 19:04:00 191 收藏 1 C语言:宽字符集操作函数(unicode编码) 字符分类: 宽字符函数 普通C函数描述 iswalnum() isalnum() 测试字符是否为数字或 阅读全文
posted @ 2021-11-20 10:24 北京开发 阅读(186) 评论(0) 推荐(0)
  2021年11月18日
摘要: 拷贝自: https://www.cnblogs.com/liuhanxu/p/14447372.html 问题: vim中鼠标选中不能复制并进入可视模式,习惯了在vim中鼠标选中即复制的效果,对此问题从网上查了下发现是vim的默认配置导致的。 解决方法:1. 修改 vim 的默认配置文件 vim 阅读全文
posted @ 2021-11-18 09:23 北京开发 阅读(60) 评论(0) 推荐(0)
  2021年11月12日
摘要: sqlite 清空表数据是使用 delete from table_name; 查询序列: select * from sqlite_sequence; 还原 sequence 序列 可使用更新语句 update sqlite_sequence set seq=0 where name='table 阅读全文
posted @ 2021-11-12 10:58 北京开发 阅读(437) 评论(0) 推荐(0)