Long.reverse(long ) 方法有什么用?
我在Long类中找到了一个方法
public static long reverse(long i) {..}
这个方法有什么用呢?
I found one method in Long class
public static long reverse(long i) {..}
What is the use of this method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 DDJ 文章:
From an DDJ article:
显然,位反转用于数字信号处理应用,如快速傅里叶变换。我不会假装理解为什么它有效,但也许链接到的页面对您来说会很清楚。
Apparently bit reversal is used in digital signal processing applications, as in the Fast Fourier Transform. I won't pretend to understand why it works, but perhaps the linked-to page will be clear to you.
您可以使用位反转来更轻松地进行屏蔽操作。
You can use bit reversal to make it easier to work with masking operations.