在 Kotlin 中,为什么 val 整数的值可以通过 inc() 方法重新分配?

发布于 2025-01-12 19:29:17 字数 256 浏览 1 评论 0原文

考虑以下情况,

val x: Int = 0

val 变量无法更改,因此 x += 1 不起作用

编译器说 < code>Val 无法重新分配

为什么 x.inc() 工作正常,但

x.inc() 不能重新分配 0 中的值1

Consider the following,

val x: Int = 0

val variables cannot be changed so doing x += 1 wouldn't work

The compiler says Val cannot be reassigned

why then does x.inc() work fine

doesn't x.inc() reassign the value from 0 to 1

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

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

发布评论

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

评论(1

我也只是我 2025-01-19 19:29:17

x.inc() 不会递增变量 x。相反,它返回一个比 x 的值大 1 的值。它不会改变x

val x = 0
x.inc() // 1 is retuned, but discarded here
print(x) // still 0!

正如其文档所述:

返回该值加一。

这似乎是一种非常无用的方法。好吧,这就是 Kotlin 用来实现后缀/前缀 ++ 运算符的运算符重载的方法。

例如,当您执行 a++ 时,会发生以下情况:

  • a的初始值存储到临时存储器a0
  • a0.inc()的结果赋值给a
  • 返回 a0 作为表达式的结果。

在这里您可以看到 inc 的返回值是如何使用的。

x.inc() does not increment the variable x. Instead, it returns a value that is one more than the value of x. It does not change x.

val x = 0
x.inc() // 1 is retuned, but discarded here
print(x) // still 0!

As its documentation says:

Returns this value incremented by one.

That might seem like a very useless method. Well, this is what Kotlin uses to implement operator overloading for the postfix/prefix ++ operator.

When you do a++, for example, the following happens:

  • Store the initial value of a to a temporary storage a0.
  • Assign the result of a0.inc() to a.
  • Return a0 as the result of the expression.

Here you can see how inc's return value is used.

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