gpt4 book ai didi

Java:如何替换 long 的最后 18 位

转载 作者:行者123 更新时间:2023-12-02 02:37:12 27 4
gpt4 key购买 nike

我从传感器获取 UTC 时间戳的最后 18 位(以节省空间)。就我而言,我想通过将当前时间戳的最后 18 位替换为我从传感器获得的时间戳,从这 18 位生成完整的 UTC 时间。任何帮助将不胜感激。

最佳答案

currentStamp &= ~0x3FFFF; // Set the last 18 bits to 0
sensorStamp &= 0x3FFFF; // Set all except the last 18 bits to 0
currentStamp |= sensorStamp; // combine

关于Java:如何替换 long 的最后 18 位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46125922/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com