Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 Vector 类并希望添加能够添加 Vector 的 X 和 Y 只需执行
Vector a + Vector b
在Java中可以做到这一点吗?
抱歉,您不能在 Java 中定义或重载运算符。实现一个add方法。您可以使用add方法 return this,以允许操作链接(例如,sum = a.add(b).add(c)),但这并不总是会产生最易读的代码。
add
this
sum = a.add(b).add(c)