0
我能做到以下幾點:我可以使用__restrict聲明的指針填充範圍嗎?
int * __restrict arr = new int [100];
std::fill_n(arr + 50, 50, 1); // the arr + 50 temporary aliases arr??
std::fill_n(&arr[50],50,1); // is this ok? No aliasing?
這可能適用於C標準和幾乎所有的C++編譯器,但我只熟悉Visual C++。
你是互聯網非常有天賦的用戶,謝謝。 – arman
@ausairman,哈哈,很高興成爲服務:-) –