摘要: 方法一 static inline int test_bit(int nr, const volatile void * addr) { return (1UL & (((const int *) addr)[nr >> 5] >> (nr & 31))) != 0UL; } 方法二 #includ 阅读全文
posted @ 2023-01-30 11:49 闹闹爸爸 阅读(794) 评论(0) 推荐(0) 编辑