两个16位数合并成32位数

1         public int To32 (int DEC16_L, int DEC16_H)
2         {
3             return (DEC16_H <<= 16) | DEC16_L;
4         }

 

posted @ 2023-03-21 22:37  电容  阅读(573)  评论(0)    收藏  举报