摘要:
//位运算 #define getBit(x,y) (((x) >> (y)) & 0x01) //获取X的第y位的值(0/1) #define setbit(x,y) x|=(1<<y); //将X的第Y位置1 #define clrbit(x,y) x&=~(1<<y); //将X的第Y位清0 阅读全文
posted @ 2023-09-01 09:03
蔡头一枚
阅读(17)
评论(0)
推荐(0)
摘要:
打印格式:AppInit::start::[37] AppInit - 类名start - 类函数名37 - 行号//类名定义#define __CLASS__ __class__ #define __class__ abi::__cxa_demangle(typeid(*this).name(), 阅读全文
posted @ 2023-09-01 09:02
蔡头一枚
阅读(81)
评论(0)
推荐(0)
摘要:
tftp 传送文件命令下载到本地:tftp -gr 文件名 服务器ip(tftp软件打开的ip,一般是window的ip) 上传到服务器:tftp -pl 文件名 服务器ip(tftp软件打开的ip,一般是window的ip) 以上需要搭配tftp软件使用 阅读全文
posted @ 2023-09-01 08:57
蔡头一枚
阅读(1885)
评论(0)
推荐(0)

浙公网安备 33010602011771号