通常,C ++数组的类型可以写为
std::array<T, Size>
如果我的数组恰好是这样的3x3数组会发生什么:
std::array<int> a[3][3];
这里的类型怎么样?我试过了:
std::array<int,3,3> or std::array<int, (3,3)>
但编译器并不喜欢这样。
答案 0 :(得分:0)
你可以std::array<std::array<int, 3>, 3>
。
答案 1 :(得分:-1)
我猜你的变量类型是:
....
success: function(response){
$('.dynamics').append(response);
}
....