使用 memcpy 从数组中复制一系列元素
假设我们有两个数组:
double *matrix=new double[100];
double *array=new double[10];
我们想要使用 memcpy 将 10 个元素从矩阵 [80:89] 复制到数组。
有什么快速解决办法吗?
Say we have two arrays:
double *matrix=new double[100];
double *array=new double[10];
And we want to copy 10 elements from matrix[80:89] to array using memcpy
.
Any quick solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 std::copy 更简单:
这更干净,因为您只需指定要复制的元素范围,而不是字节数。此外,它适用于所有可复制的类型,而不仅仅是 POD 类型。
It's simpler to use
std::copy
:This is cleaner because you only have to specify the range of elements to be copied, not the number of bytes. In addition, it works for all types that can be copied, not just POD types.
但是(既然你说的是 C++),使用 C++ 函数而不是旧的 C memcpy 会获得更好的类型安全性:
请注意,该函数采用范围的“最后一位”指针你想使用。大多数 STL 函数都是这样工作的。
But (since you say C++) you'll have better type safety using a C++ function rather than old C
memcpy
:Note that the function takes a pointer "one-past-the-end" of the range you want to use. Most STL functions work this way.