! 是什么意思? Ruby 方法名称后面的含义是什么?

发布于 2024-12-11 16:07:33 字数 323 浏览 1 评论 0原文

可能的重复:
为什么在 Ruby 方法中使用感叹号?

查看时我遇到过这个方法的一些 Ruby 代码:

def SomeMethod!
    // ...
end

什么是 !下面的方法名做什么?

Possible Duplicate:
Why are exclamation marks used in Ruby methods?

While looking over some Ruby code I came across this method:

def SomeMethod!
    // ...
end

What does the ! following the method name do?

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

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

发布评论

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

评论(3

幸福不弃 2024-12-18 16:07:33

我相信这只是一种将方法标记为“比其他方法更危险”的约定。这可能意味着它具有影响其参数或类属性的副作用。这只是提醒要小心。

I believe it's just a convention to mark a method as 'more dangerous than others." This could mean that it has a side effect that affects its parameters or maybe its class attributes. It's just a reminder to be careful.

谈情不如逗狗 2024-12-18 16:07:33

按照惯例,这意味着该方法会改变类的状态。

By convention it means that the method mutates the state of the class.

花间憩 2024-12-18 16:07:33

方法名称末尾的感叹号意味着此类方法以比不带 ! 的相同方法的版本更危险的方式执行操作。

请注意,如果没有这样的其他方法,则永远不应该使用 !。您可以将 ! 理解为一种在视觉上区分两个等效方法的方法。

示例:

Array#flatten

Array#flatten!

Kernel#exit!

内核#退出

The exclamation mark at the end of a method's name means that such a method performs an operation in a more dangerous way than the version of the same method without the !.

Notice that you should never ever use ! if there is not such other method. You can understand ! as a means to visually differentiate between two otherwise equivalent methods.

Example:

Array#flatten

Array#flatten!

Kernel#exit!

Kernel#exit

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