> For the complete documentation index, see [llms.txt](https://wskdsgcf.gitbook.io/mastering-go-zh-cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wskdsgcf.gitbook.io/mastering-go-zh-cn/08.0/08.3.md).

# 08.3 io.Reader和io.Writer接口

如前所述，实现`io.Reader`接口需要实现`Read()`方法，`io.Writer()`接口需要实现`Write()`方法。这两个接口在`Go`中非常常见，我们将在稍后使用它们。
