Skip to content

Commit

Permalink
Merge pull request #173 from ekkoful/fix/headline-format
Browse files Browse the repository at this point in the history
fix: bold line format
  • Loading branch information
smallnest authored Apr 29, 2024
2 parents aa8b793 + 6fa7ee6 commit b93b9f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/020.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- 我们试图避免复制结构体时带来的开销。
- 或许是因为我们已经有了一个指针,感觉为了传值而去解引用它显得多余(`*T`)。

** 0. 关于指针的常见观念**
**0. 关于指针的常见观念**

人们普遍认为这是一种节省内存的巧妙方法。

Expand Down Expand Up @@ -47,7 +47,7 @@

对于本质上较小或不太可能显著扩展的数据类型,直接传递可以避免解引用指针的额外步骤。

** 4. 传递值的速度很快,而且很少比传递指针慢**
**4. 传递值的速度很快,而且很少比传递指针慢**

这可能会因为复制而显得有悖常理,但原因如下:
- 复制少量数据非常高效,通常比使用指针时所需的间接操作更快。
Expand All @@ -56,7 +56,7 @@

你很少会遇到一个足够大的结构体,以至于通过指针传递对其有利。

** 5. 将传递值设为默认值**
**5. 将传递值设为默认值**

只有在基准测试显示指针传递有明显优势时,才考虑使用指针。

Expand Down

0 comments on commit b93b9f7

Please sign in to comment.