3
我只是編碼比較數組的地址在C++ 11
std::array<std::array<double,3>,27 > dshape;
&dshape[0][0] points to the address ****780
&dshape[0][1] points to the address ****788
&dshape[0][2] points to the address ****790 (I was expecting 796)
這是爲什麼?