记录详情

Compile Error

/in/foo.cc:7:12: error: expected ']' before numeric constant
    7 |     int v[[3]()][[3]()];
      |            ^
      |            ]
/in/foo.cc: In constructor 'Matrix3::Matrix3()':
/in/foo.cc:8:17: error: 'memset' was not declared in this scope
    8 |     Matrix3() { memset(v, 0, sizeof(v)); }
      |                 ^~~~~~
/in/foo.cc:2:1: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
    1 | #include <iostream>
  +++ |+#include <cstring>
    2 | using namespace std;
/in/foo.cc: In constructor 'Matrix3::Matrix3(const int*)':
/in/foo.cc:14:18: error: invalid types 'int[int]' for array subscript
   14 |                 v[i][j] = data[idx++];
      |                  ^
/in/foo.cc: In member function 'Matrix3 Matrix3::operator+(const Matrix3&) const':
/in/foo.cc:21:22: error: invalid types 'int[int]' for array subscript
   21 |                 res.v[i][j] = v[i][j] + other.v[i][j];
      |                      ^
/in/foo.cc:21:32: error: invalid types 'const int[int]' for array subscript
   21 |                 res.v[i][j] = v[i][j] + other.v[i][j];
      |                                ^
/in/foo.cc:21:48: error: invalid types 'const int[int]' for array subscript
   21 |                 res.v[i][j] = v[i][j] + other.v[i][j];
      |                                                ^
/in/foo.cc: In member function 'Matrix3 Matrix3::operator-(const Matrix3&) const':
/in/foo.cc:30:22: error: invalid types 'int[int]' for array subscript
   30 |                 res.v[i][j] = v[i][j] - other.v[i][j];
      |                      ^
/in/foo.cc:30:32: error: invalid types 'const int[int]' for array subscript
   30 |                 res.v[i][j] = v[i][j] - other.v[i][j];
      |                                ^
/in/foo.cc:30:48: error: invalid types 'const int[int]' for array subscript
   30 |                 res.v[i][j] = v[i][j] - other.v[i][j];
      |                                                ^
/in/foo.cc: In member function 'Matrix3 Matrix3::operator*(const Matrix3&) const':
/in/foo.cc:39:26: error: invalid types 'int[int]' for array subscript
   39 |                     res.v[i][j] += v[i][k] * other.v[k][j];
      |                          ^
/in/foo.cc:39:37: error: invalid types 'const int[int]' for array subscript
   39 |                     res.v[i][j] += v[i][k] * other.v[k][j];
      |                                     ^
/in/foo.cc:39:53: error: invalid types 'const int[int]' for array subscript
   39 |                     res.v[i][j] += v[i][k] * other.v[k][j];
      |                                                     ^
/in/foo.cc: In member function 'Matrix3 Matrix3::operator*(int) const':
/in/foo.cc:47:22: error: invalid types 'int[int]' for array subscript
   47 |                 res.v[i][j] = v[i][j] * scalar;
      |                      ^
/in/foo.cc:47:32: error: invalid types 'const int[int]' for array subscript
   47 |                 res.v[i][j] = v[i][j] * scalar;
      |                                ^
/in/foo.cc: In function 'int main()':
/in/foo.cc:60:15: error: expected ']' before numeric constant
   60 |     int data[[9]()];
      |               ^
      |               ]
/in/foo.cc:61:44: error: invalid types 'int[int]' for array subscript
   61 |     for (int i = 0; i < 9; ++i) cin >> data[i];
      |                                            ^
/in/foo.cc:62:16: error: invalid conversion from 'int' to 'const int*' [-fpermissive]
   62 |     Matrix3 m1(data);
      |                ^~~~
      |                |
      |                int
/in/foo.cc:9:24: note:   initializing argument 1 of 'Matrix3::Matrix3(const int*)'
    9 |     Matrix3(const int* data)
      |             ~~~~~~~~~~~^~~~
/in/foo.cc:63:44: error: invalid types 'int[int]' for array subscript
   63 |     for (int i = 0; i < 9; ++i) cin >> data[i];
      |                                            ^
/in/foo.cc:64:16: error: invalid conversion from 'int' to 'const int*' [-fpermissive]
   64 |     Matrix3 m2(data);
      |                ^~~~
      |                |
      |                int
/in/foo.cc:9:24: note:   initializing argument 1 of 'Matrix3::Matrix3(const int*)'
    9 |     Matrix3(const int* data)
      |             ~~~~~~~~~~~^~~~
/in/foo.cc:65:44: error: invalid types 'int[int]' for array subscript
   65 |     for (int i = 0; i < 9; ++i) cin >> data[i];
      |                                            ^
/in/foo.cc:66:16: error: invalid conversion from 'int' to 'const int*' [-fpermissive]
   66 |     Matrix3 m3(data);
      |                ^~~~
      |                |
      |                int
/in/foo.cc:9:24: note:   initializing argument 1 of 'Matrix3::Matrix3(const int*)'
    9 |     Matrix3(const int* data)
      |             ~~~~~~~~~~~^~~~
/in/foo.cc:71:27: error: invalid types 'int[int]' for array subscript
   71 |             cout << res1.v[i][j] << " ";
      |                           ^
/in/foo.cc:75:27: error: invalid types 'int[int]' for array subscript
   75 |             cout << res2.v[i][j] << " ";
      |                           ^

信息

递交者
类型
自测
题目
P1019 OO4-3 矩阵类的算术运算符的重载
语言
C++
递交时间
2025-03-29 19:15:58
评测时间
2025-03-29 19:15:58
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes