标签: c++ c++11
为什么以下错误?
std::array<double, 10> *p=new std:array<double, 10>; *p[1]=5;
我认为取消对指针的引用将产生数组,然后我们可以简单地更新一个值?