摘要:
struct _FileInfo{ int fileSizeGB; int fileSizeMB; int fileSizeKB; int fileSizeBYTE; char fileName[32];//文件名称 char fileSuffix [6];//文件后缀 }FileInfo; 这里的 阅读全文
摘要:
QT的基本数据类型(转) qint8:signed char 有符号8比特数据 qint16:signed short 16位数据类型 qint32:signed int. 32位有符号数据类型 qint64:long long int 或(__int64) 64位有符号数据类型,Windows中定 阅读全文
摘要:
一、简单设置 工具->选项->文本编辑器->片段->C++ 添加,设置触发名字。 然后在代码中输入触发条件,就能弹出此片段了 /***********************************************/// z 函数名称:NULL// h 函数作用:NULL// u 函数参数: 阅读全文
摘要:
void TheFunc(void){ static int icount=0; icount++; if(icount>10){ cout<<"我已被调用超过10次了"<<endl; return; } if(icount>20){ cout<<"我已被调用超过20次了"<<endl; retur 阅读全文
摘要:
1、在Linux中echo命令用来在标准输出上显示一段字符,比如:echo "the echo command test!" 这个就会输出“the echo command test!”这一行文字! 2、echo "the echo command test!">a.sh这个就会在a.sh文件中输入 阅读全文
摘要:
条件编译是通过预编译指令来实现的,主要方法有:1、#if, #elif, #else, #endif#if 条件 1 代码段 1#elif 条件 2 代码段 2...#elif 条件 n 代码段 n#else 代码段 n+1#endif即可以设置不同的条件,在编译时编译不同的代码 2、#ifdef, 阅读全文
摘要:
time_t实际上就是长整型long int;用来保存从1970年1月1日0时0分0秒到现在时刻的秒数!用time()这个函数获取! 阅读全文
摘要:
1、sin_addr.s_addr = INADDR_ANY;设置成本地IP 2、pthread_create();线程生成函数 3、在linux下,sleep(1)是睡眠1s 阅读全文
摘要:
功能:把格式化的数据写入某个字符串缓冲区。 原型 int sprintf( char *buffer, const char *format, [ argument] … ); sprintf参数列表 buffer:char型指针,指向将要写入的字符串的缓冲区。 format:格式化字符串。 [ar 阅读全文
摘要:
举例: typedef struct _ssidCfg_{ unsigned char ret; unsigned char scanSsid; unsigned char priority; unsigned char encryption; unsigned char ssid[32]; uns 阅读全文