Naming convention: Why Array#delete has no exclamation mark at the end?
我正在学习Ruby,我已经看到了一个感叹号在一个方法名的末尾,通过约定,意味着该方法在某种程度上修改了
引用Matz(Ruby的总工程师):
The bang (!) does not mean"destructive" nor lack of it mean non
destructive either. The bang sign means"the bang version is more
dangerous than its non bang counterpart; handle with care".
由于
"砰"的方法并不意味着它修改了接收器。它表示一个方法是现有方法的更危险版本。请参见DavidA.Black对差异的描述,以及对更改Ruby2.0请求的响应。
这是一个很常见的误解。请注意这里投票结果非常错误的答案。