记录详情

Accepted

/in/foo.cc: In function 'int main()':
/in/foo.cc:43:33: warning: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second:
   43 |         Vector3 res1=(v1+v2-v3)*k;
      |                                 ^
/in/foo.cc:23:17: note: candidate 1: 'Vector3 Vector3::operator*(int) const'
   23 |         Vector3 operator*(int k) const
      |                 ^~~~~~~~
/in/foo.cc:18:17: note: candidate 2: 'Vector3 Vector3::operator*(const Vector3&)'
   18 |         Vector3 operator*(const Vector3& o) //叉积
      |                 ^~~~~~~~
/in/foo.cc:44:35: warning: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second:
   44 |         Vector3 res2=((v1*v2)*v3)*k;
      |                                   ^
/in/foo.cc:23:17: note: candidate 1: 'Vector3 Vector3::operator*(int) const'
   23 |         Vector3 operator*(int k) const
      |                 ^~~~~~~~
/in/foo.cc:18:17: note: candidate 2: 'Vector3 Vector3::operator*(const Vector3&)'
   18 |         Vector3 operator*(const Vector3& o) //叉积
      |                 ^~~~~~~~
# 状态 耗时 内存占用
#1 Accepted 2ms 476.0 KiB
#2 Accepted 1ms 528.0 KiB
#3 Accepted 1ms 340.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 348.0 KiB

信息

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