摘要:
Tslib 的配置文件ts.conf 是个十分重要的部分, module_raw inputmodule pthres pmin=1module variance delta=30module dejitter delta=100module linear 在ts.conf 中配置了需要加载的插件、 阅读全文
摘要:
https://www.jianshu.com/p/6e72ff770244 无名信号量 只适合用于一个进程的不同线程 #include <time.h> #include <stdio.h> #include <errno.h> #include <unistd.h> #include <stdl 阅读全文
摘要:
#include #include #include #include #include #include #include #include #include #define PORT 12100 #define BUFFER_SIZE 1024 #define MAX_LISTEN 5 /*初始化服务端*/ int ser... 阅读全文
摘要:
https://blog.csdn.net/hpu11/article/details/53325729 https://blog.csdn.net/wx984490083/article/details/81301752 阅读全文
摘要:
https://blog.csdn.net/aaa123524457/article/details/80582978 阅读全文
摘要:
c11新特性中加入了lambda表达式,所以Qt 也支持 需在.pro文件中加入 阅读全文
摘要:
在“[]”包括起来的是捕捉列表,捕捉列表由多个捕捉项组成,并以逗号分隔。捕捉列表有以下几种形式: 1.[var]表示值传递方式捕捉变量var;2.[=]表示值传递方式捕捉所有父作用域的变量(包括this);3.[&var]表示引用传递捕捉变量var;4.[&]表示引用传递方式捕捉所有父作用域的变量( 阅读全文
摘要:
参与运算的两个值,如果两个相应bit位相同,则结果为0,否则为1。 即: 0^0 = 0, 1^0 = 1, 0^1 = 1, 1^1 = 0 按位异或的3个特点: (1) 0^0=0,0^1=1 0异或任何数=任何数 (2) 1^0=1,1^1=0 1异或任何数-任何数取反 (3) 任何数异或自己 阅读全文