memcpy vs for loop - What#39;s the proper way to copy an array from a pointer?(memcpy vs for 循环 - 从指针复制数组的正确方法是什么?)
问题描述
我有一个函数 foo(int[] nums),我理解它本质上等同于 foo(int* nums).在 foo 内部,我需要将 nums 指向的数组的内容复制到 范围内声明的一些 .我理解以下内容无效:int[10] 中富
I have a function foo(int[] nums) which I understand is essentially equivalent to foo(int* nums). Inside foo I need to copy the contents of the array pointed to by numsinto some int[10] declared within the scope of foo. I understand the following is invalid:
void foo (int[] nums)
{
myGlobalArray = *nums
}
复制数组的正确方法是什么?我应该像这样使用 memcpy:
What is the proper way to copy the array? Should I use memcpy like so:
void foo (int[] nums)
{
memcpy(&myGlobalArray, nums, 10);
}
还是应该使用 for 循环?
or should I use a for loop?
void foo(int[] nums)
{
for(int i =0; i < 10; i++)
{
myGlobalArray[i] = nums[i];
}
}
我还缺少第三种选择吗?
Is there a third option that I'm missing?
推荐答案
Memcpy 可能会更快,但使用它的可能性更大.这可能取决于您的优化编译器的智能程度.
Memcpy will probably be faster, but it's more likely you will make a mistake using it. It may depend on how smart your optimizing compiler is.
您的代码不正确.应该是:
Your code is incorrect though. It should be:
memcpy(myGlobalArray, nums, 10 * sizeof(int) );
这篇关于memcpy vs for 循环 - 从指针复制数组的正确方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:memcpy vs for 循环 - 从指针复制数组的正确方法是什
基础教程推荐
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 初始化列表*参数*评估顺序 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- CString 到 char* 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
