Comparing arrays for equality in C++
问题 Can someone please explain to me why the output from the following code is saying that arrays are not equal ? int main() { int iar1[] = {1,2,3,4,5}; int iar2[] = {1,2,3,4,5}; if (iar1 == iar2) cout << "Arrays are equal."; else cout << "Arrays are not equal."; return 0; } 回答1: if (iar1 == iar2) Here iar1 and iar2 are decaying to pointers to the first elements of the respective arrays. Since they are two distinct arrays, the pointer values are, of course, different and your comparison tests not