编程积累
xu5477243
这个作者很懒,什么都没留下…
展开
-
Linux内核中sk_buff结构详解
Linux内核中sk_buff结构详解 - 简书转载 2022-04-01 11:14:01 · 216 阅读 · 0 评论 -
编译dts dtb 出错 fatal error: dt-bindings/gpio/gpio.h: No such file or directory
Linux设备树编译转载 2022-02-14 16:57:12 · 3899 阅读 · 4 评论 -
QT中ui更改后不能更新的解决方法
ui源文件到界面显示的原理可以网上搜索,这里不再描述。简单讲就是先要从*.ui生成ui_*.h然后再编译,所以界面未更新实际上是因为ui_*.h这个文件没有更新导致的。出现此问题后我尝试了以下几个方法:1,在生成目标的文件夹内找到ui_*.h,复制到源代码文件夹内覆盖原来文件,成功2,删除源代码文件夹内ui_*.h后,clear all 然后再重新编译,失败。3,uic *.ui ...转载 2020-01-04 09:45:19 · 5460 阅读 · 2 评论 -
VC获取系统时间、程序运行时间的五种方法
1.使用CTime类(获取系统当前时间,精确到秒)CString str;//获取系统时间CTime tm;tm=CTime::GetCurrentTime();//获取系统日期str=tm.Format("现在时间是%Y年%m月%d日 %X");MessageBox(str,NULL,MB_OK); a,从CTimet中提取年月日时分秒 CTime原创 2015-11-18 13:49:19 · 443 阅读 · 0 评论 -
VC中利用API函数操作INI文件
VC中操作INI文件的函数主要有:函数名功能备注GetPrivateProfileInt 读取INI文件指定块中的键名对应的整数值。GetPrivateProfileSection记取INI文件指定块中的所有键名及其对应值。GetPrivateProfileSectionNam转载 2015-11-16 13:11:54 · 193 阅读 · 0 评论 -
INI文件常用操作
INI文件常用操作转载 2015-09-24 14:09:42 · 480 阅读 · 0 评论 -
C++中数字与字符串之间的转换
1、字符串数字之间的转换(1)string --> char * string str("OK"); char * p = str.c_str();(2)char * -->string char *p = "OK"; string str(p);(3)char * -->CString char *p ="OK"; CSt原创 2015-10-12 14:13:17 · 173 阅读 · 0 评论 -
C++ STL Map使用
1. map最基本的构造函数;mapmapstring; mapmapint;mapmapstring; mapmapchar;mapmapchar; mapmapint;2. map添加数据;mapmaplive;1. maplive.insert(pair(102,"aclive"));2. maplive.insert(map::value_type(32转载 2015-07-31 14:29:52 · 192 阅读 · 0 评论 -
C/C++获取当前系统时间
个人觉得第二种还是比较实用的,而且也是最常用的~不过当计算算法耗时的时候,不要忘记second,不能只要用Milliseconds来减,不然后出现负值,若是算法耗时太长就得用minutes啦。再不然,就hours……//方案— 优点:仅使用C标准库;缺点:只能精确到秒级#include #include int main( void ) { time_t t转载 2015-07-16 13:26:34 · 222 阅读 · 0 评论 -
C++ STL list函数详解
C++ List函数使用原创 2015-07-16 13:19:09 · 1342 阅读 · 0 评论