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.
我正在尝试将一些 C++ 代码转换为 delphi,但不确定这个操作符是什么或如何在 delphi 中创建它
/=
它在 c++ 中说它是由商运算符分配的,但不知道这是什么意思?
谢谢格伦
例如 -
a /= b;
相当于
a = a / b;