优化 《 使用 + 或者 += 连接字符串 》 小节内容#1610
Open
Creat55 wants to merge 1 commit into
Open
Conversation
原文对+左右所有权的解释比较模糊,本次修订: - 直接展示 `fn add(mut self, other: &str) -> String` 签名,并解释其所有权含义。 - 明确左侧必须是 String(转移所有权,不能使用引用),右侧必须是 &str(不可变借用)。 - 补充说明 `+=` 等价于 `s = s + &str`,因此左侧变量必须声明为 mut。 - 保留全部原有示例,仅调整周边解释,使概念更准确、教学更清晰。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
原文对+左右所有权的解释比较模糊,本次修订:
fn add(mut self, other: &str) -> String签名,并解释其所有权含义。+=等价于s = s + &str,因此左侧变量必须声明为 mut。