我正在尝试制作一个数组的副本。我知道这是“糟糕的代码”,但我从一个大量使用这个和其他低级东西的教程中得到它。出于某种原因,我遇到了运行时错误,我不知道它来自哪里或为什么。任何人都可以帮忙吗?谢谢。
#include <iostream>
void copy_array(void *a, void const *b, std::size_t size, int amount)
{
std::size_t bytes = size * amount;
for (int i = 0; i < bytes; ++i)
reinterpret_cast<char *>(a)[i] = static_cast<char const *>(b)[i];
}
int main()
{
int a[10], b[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
copy_array(a, b, sizeof(b), 10);
for (int i = 0; i < 10; ++i)
std::cout << a[i] << ' ';
}