摘要: public static int ushorts2int(ushort[] res) { int high = res[0]; int low = res[1]; int value = (high << 16) + low; return value; } public static ushor 阅读全文
posted @ 2023-08-02 13:00 威流 阅读(698) 评论(0) 推荐(0) 编辑