You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
项目中多次出现的change in place翻译为“原地更新”,个人觉得翻译为“更新对象本身”更容易理解。例如 Mutating the immutable!/强人所难中的这一句:
+= operator changes the list in-place. The item assignment doesn't work, but when the exception occurs, the item has already been changed in place.
原翻译为“+= 操作符在原地修改了列表. 元素赋值操作并不工作, 但是当异常抛出时, 元素已经在原地被修改了”
可修改为“+= 操作符修改了列表本身. 元素赋值操作并不能正常运行, 但是当异常抛出时, 元素本身已经被修改了”
首先,感谢大大提供的翻译!
上周末大致读完后,以下几个地方想做一些补充
+= operator changes the list in-place. The item assignment doesn't work, but when the exception occurs, the item has already been changed in place.
原翻译为“+= 操作符在原地修改了列表. 元素赋值操作并不工作, 但是当异常抛出时, 元素已经在原地被修改了”
可修改为“+= 操作符修改了列表本身. 元素赋值操作并不能正常运行, 但是当异常抛出时, 元素本身已经被修改了”
The text was updated successfully, but these errors were encountered: