摘要: 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 @ 2024-08-04 14:40 搬砖的L先生 阅读(8) 评论(0) 推荐(0) 编辑