加入逗号断句更容易理解

This commit is contained in:
bioinformatist 2017-11-11 13:04:53 +08:00
parent 7a0df0a866
commit 2ef71531e3

View File

@ -52,7 +52,7 @@ v.push(8);
} // <- v goes out of scope and is freed here } // <- v goes out of scope and is freed here
``` ```
当 vector 被丢弃时,所有其内容也会被丢弃,这意味着这里它包含的整数将被清理。这可能看起来非常直观,不过一旦开始使用 vector 元素的引用情况就变得有些复杂了。下面让我们处理这种情况! 当 vector 被丢弃时,所有其内容也会被丢弃,这意味着这里它包含的整数将被清理。这可能看起来非常直观,不过一旦开始使用 vector 元素的引用情况就变得有些复杂了。下面让我们处理这种情况!
### 读取 vector 的元素 ### 读取 vector 的元素