记录详情

Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:45:15: error: 'int Vector3::x' is private within this context
   45 |     cin >> v1.x >> v1.y >> v1.z;
      |               ^
/in/foo.cc:6:9: note: declared private here
    6 |     int x, y, z;
      |         ^
/in/foo.cc:45:23: error: 'int Vector3::y' is private within this context
   45 |     cin >> v1.x >> v1.y >> v1.z;
      |                       ^
/in/foo.cc:6:12: note: declared private here
    6 |     int x, y, z;
      |            ^
/in/foo.cc:45:31: error: 'int Vector3::z' is private within this context
   45 |     cin >> v1.x >> v1.y >> v1.z;
      |                               ^
/in/foo.cc:6:15: note: declared private here
    6 |     int x, y, z;
      |               ^
/in/foo.cc:46:15: error: 'int Vector3::x' is private within this context
   46 |     cin >> v2.x >> v2.y >> v2.z;
      |               ^
/in/foo.cc:6:9: note: declared private here
    6 |     int x, y, z;
      |         ^
/in/foo.cc:46:23: error: 'int Vector3::y' is private within this context
   46 |     cin >> v2.x >> v2.y >> v2.z;
      |                       ^
/in/foo.cc:6:12: note: declared private here
    6 |     int x, y, z;
      |            ^
/in/foo.cc:46:31: error: 'int Vector3::z' is private within this context
   46 |     cin >> v2.x >> v2.y >> v2.z;
      |                               ^
/in/foo.cc:6:15: note: declared private here
    6 |     int x, y, z;
      |               ^
/in/foo.cc:47:15: error: 'int Vector3::x' is private within this context
   47 |     cin >> v3.x >> v3.y >> v3.z;
      |               ^
/in/foo.cc:6:9: note: declared private here
    6 |     int x, y, z;
      |         ^
/in/foo.cc:47:23: error: 'int Vector3::y' is private within this context
   47 |     cin >> v3.x >> v3.y >> v3.z;
      |                       ^
/in/foo.cc:6:12: note: declared private here
    6 |     int x, y, z;
      |            ^
/in/foo.cc:47:31: error: 'int Vector3::z' is private within this context
   47 |     cin >> v3.x >> v3.y >> v3.z;
      |                               ^
/in/foo.cc:6:15: note: declared private here
    6 |     int x, y, z;
      |               ^

信息

递交者
类型
递交
题目
P1017 OO4-1 向量类的算术运算符的重载
比赛
2024级《面向对象的方法与实践》第三次作业
语言
C++
递交时间
2025-03-29 17:15:13
评测时间
2025-03-29 17:15:13
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes