如何从数字本身生成数字的位掩码?

发布于 2024-11-04 07:39:25 字数 127 浏览 0 评论 0原文

有什么方法可以在不更改数字本身的情况下生成数字的位掩码?

我是编程新手,我只见过硬编码的位掩码。

我们可以对数字进行任何操作来从数字本身生成位掩码(即:动态生成的掩码,取决于数字的值)

谢谢。

Is there any way with which I can generate bit mask of a number without changing the number itself?

I am new to programming and I have seen hard-coded bit-masks only.

Can we do any operations on the number to generate the bitmask, from the number itself (i.e.: a dynamically generated mask, depending the value of the number)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一瞬间的火花 2024-11-11 07:39:25

为什么不呢?使用数字本身作为掩码:

//returns true if bit n is 1 and false otherwise
bool get(int index, int mask)
{
    return (mask >> index) & 1;
}

Why not? Use the number itself as a mask:

//returns true if bit n is 1 and false otherwise
bool get(int index, int mask)
{
    return (mask >> index) & 1;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文