Skip to content

Commit

Permalink
第七章
Browse files Browse the repository at this point in the history
  • Loading branch information
ShujiaHuang committed Jul 31, 2021
1 parent 470536f commit 3a8fd34
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion practice/booknotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1721,10 +1721,22 @@ C++还提供了帮助决策的运算符。通过使用逻辑运算符(`&&`、`
文件I/O与控 制台I/O极其相似。声明ifstream和ofstream对象,并将它们同文件关联起 来后,便可以像使用cin和cout那样使用这些对象。



# 第七章 函数——C++的编程模块

本周内容包括:

- 函数基本知识;
- 函数原型;
- 按值传递函数参数;
- 设计处理数据的函数;
- 使用 `const` 指针参数;
- 设计处理文本字符串的函数;
- 设计处理结构的函数;
- 设计处理 `string` 对象的函数;
- 调用自身的函数(递归);
- 指向函数的指数。

## 7.1 函数基本知识



Expand Down

0 comments on commit 3a8fd34

Please sign in to comment.