我有以下代码:
#pragma once
class Matrix{
public:
Matrix();
~Matrix();
protected:
float mat[3] = {0.0, 0.0, 0.0};
};
但我在float mat[3] = {0.0, 0.0, 0.0};
. 它说 Error C2059: syntax error : '{' and error C2334: unexpected token(s) before '{'; 跳过明显的函数体。
我正确地创建了数组不是我吗?那有什么问题呢?