#define PB_range(name, required_bits) \name, name ## _end=(name+required_bits)-1
大神解释下这个宏有什么用处,这个语法也看不太懂
宏定义直接将参数代入,进行替换就行了,不过要注意##是连接符,将前后字符直接连接在一块。