复制位操作的指针

发布于 2024-11-04 02:28:46 字数 382 浏览 0 评论 0原文

我有一个函数传递一个结构,而不是对 arr 本身进行位操作,我想创建副本。如何复制无符号整数数组的元素以进行位操作?

unsigned int * arr = cs->arr; // cs->arr is set as unsigned int * arr;
unsigned int copy;
memcpy(copy,arr[0], sizeof(unsigned int)); // Copy into copy the first element, for now
int i = 0;
while(copy != 0)
{       
    i += copy & 1;
    copy >>= 1;
}
return i;

谢谢你!

I have a function that passes in a struct that and instead of doing bit manipulations on the arr itself I want to create copy. How can I make a copy of an element of an array of unsigned ints to do bit manipulations on?

unsigned int * arr = cs->arr; // cs->arr is set as unsigned int * arr;
unsigned int copy;
memcpy(copy,arr[0], sizeof(unsigned int)); // Copy into copy the first element, for now
int i = 0;
while(copy != 0)
{       
    i += copy & 1;
    copy >>= 1;
}
return i;

Thank you!

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

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

发布评论

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

评论(2

北音执念 2024-11-11 02:28:46

您不需要memcopy。一个简单的数组访问就足够了:

unsigned int copy = cs->arr[0];
int i = 0;
while(copy != 0)
{        
    i += copy & 1;
    copy >>= 1;
}
return i;

You dont need memcopy. A simple array access is enough:

unsigned int copy = cs->arr[0];
int i = 0;
while(copy != 0)
{        
    i += copy & 1;
    copy >>= 1;
}
return i;
幸福还没到 2024-11-11 02:28:46
copy = arr[0];

这就是所需要的一切。 copy 将具有与 arr[0] 相同的值,但不会以任何其他方式链接到它。 (即修改 copy 不会更改 arr[0]。)

copy = arr[0];

is all that's needed. copy will have the same value as arr[0], but it won't be linked to it in any other way. (i.e. modifying copy will not change arr[0].)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文