This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
#define lshft(A,n) ((A)<<(n))
#define lshft_1(A) ((A)<<1)
#define lshft_2(A) ((A)<<2)
这个定义怎么理解?