Double.doubleToLongBits 在 C# 中等效吗?
有一个 Java 方法 Double.doubleToLongBits
,它基本上获取一个 double
并返回一个具有相同位的 long
。
我怎样才能用 C# 做到这一点?
谢谢
there's a Java method Double.doubleToLongBits
that basically gets a double
and return a long
with the same bits.
How can I do it in C#?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BitConverter.DoubleToInt64Bits
将是一个不错的选择。http://msdn.microsoft.com/en-us/library /system.bitconverter.doubletoint64bits.aspx
BitConverter.DoubleToInt64Bits
would be a good alternative.http://msdn.microsoft.com/en-us/library/system.bitconverter.doubletoint64bits.aspx
您需要 BitConverter.DoubleToInt64Bits
You'll want BitConverter.DoubleToInt64Bits