C# 中 /= 是什么意思?

发布于 2024-11-07 11:59:56 字数 194 浏览 0 评论 0原文

我在谷歌上搜索 /= 时遇到了困难...谁能告诉我这段代码的作用吗?

number = digits[n % digits.Length] + number;
n /= digits.Length;

我的目的是确定此操作的其余部分是什么......这样我就知道何时停止或继续进行。

I am having a tough time googling /=... can anyone tell me what this code does?

number = digits[n % digits.Length] + number;
n /= digits.Length;

My intent is to determine what the remainder of this operation is... so I know when to stop or keep going.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

沧笙踏歌 2024-11-14 11:59:56

这是除法赋值运算符,含义n = n/digits.Length

请参阅MSDN:/= 运算符(C# 参考) 了解详细信息。

This is the division assignment operator operator meaning n = n/digits.Length

See MSDN: /= Operator (C# Reference) for details.

秋千易 2024-11-14 11:59:56

只是为了添加已在各种答案中发布的内容,复合赋值运算符 $= (将 $ 替换为二元运算符)类似到右侧使用的二元运算符的赋值。不同之处在于左侧仅计算一次。因此:

x $= y

x 仅计算一次。

x = x $ y

x 被评估两次。

在实践中不太可能产生影响。

Just to add to what has already been posted in various answers, a compound assignment operator $= (replace $ with a binary operator) is similar to an assignment with the binary operator used in the right-hand side. The difference is that the left-hand side is evaluated only once. So:

x $= y

x is evaluated only once.

x = x $ y

x is evaluated twice.

Unlikely to make a difference in practice.

ㄟ。诗瑗 2024-11-14 11:59:56

x /= y 表示设置 x 等于(在本例中为整数部分)“x 除以 y”/ 是除法运算符。

x /= y means set x equal to (in this case the integral part of) 'x divided by y'. / is the division operator.

淤浪 2024-11-14 11:59:56

和刚才的除法一样

n += 4; // adds 4
n *= 4; // 4 times

Same as

n += 4; // adds 4
n *= 4; // 4 times

just division.

瑾夏年华 2024-11-14 11:59:56

根据 MSDN,这两个是等效的:

 n /= digits.Length;

并且

 n = n/digits.Length;

与更常见的类似:

n+=1;

Per MSDN, these two are equivalent:

 n /= digits.Length;

and

 n = n/digits.Length;

Similar to the more commonly seen:

n+=1;
挽袖吟 2024-11-14 11:59:56

/= 是除法运算符。

x /= y ;

与说的是同一件事:

x = x / y ;

/= is a division operator.

x /= y ;

is the same thing as saying:

x = x / y ;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文