Skip to content

Commit

Permalink
deploy: bb175c6
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 11, 2023
1 parent cf20975 commit ece421d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions ch7/ch7-01.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,8 @@ <h2 id="71-接口约定"><a class="header" href="#71-接口约定">7.1. 接口
return buf.String()
}
</code></pre>
<p>Fprintf的前缀F表示文件(File)也表明格式化输出结果应该被写入第一个参数提供的文件中。在Printf函数中的第一个参数os.Stdout是<code>*os.File</code>类型;在Sprintf函数中的第一个参数&amp;buf是一个指向可以写入字节的内存缓冲区,然而它
并不是一个文件类型尽管它在某种意义上和文件类型相似。</p>
<p>即使Fprintf函数中的第一个参数也不是一个文件类型。它是io.Writer类型,这是一个接口类型定义如下:</p>
<p>Fprintf的前缀F表示文件(File),也表明格式化输出结果应该被写入第一个参数提供的文件中。在Printf函数中的第一个参数os.Stdout是<code>*os.File</code>类型;在Sprintf函数中的第一个参数&amp;buf是一个指向可以写入字节的内存缓冲区。然而它并不是一个文件类型,尽管它在某种意义上和文件类型相似。</p>
<p>即使是Fprintf函数中的第一个参数,它也不是一个文件类型。它是io.Writer类型,这是一个接口类型定义如下:</p>
<pre><code class="language-go">package io

// Writer is the interface that wraps the basic Write method.
Expand Down
5 changes: 2 additions & 3 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -5094,9 +5094,8 @@ <h3 id="621-nil也是一个合法的接收器类型"><a class="header" href="#62
return buf.String()
}
</code></pre>
<p>Fprintf的前缀F表示文件(File)也表明格式化输出结果应该被写入第一个参数提供的文件中。在Printf函数中的第一个参数os.Stdout是<code>*os.File</code>类型;在Sprintf函数中的第一个参数&amp;buf是一个指向可以写入字节的内存缓冲区,然而它
并不是一个文件类型尽管它在某种意义上和文件类型相似。</p>
<p>即使Fprintf函数中的第一个参数也不是一个文件类型。它是io.Writer类型,这是一个接口类型定义如下:</p>
<p>Fprintf的前缀F表示文件(File),也表明格式化输出结果应该被写入第一个参数提供的文件中。在Printf函数中的第一个参数os.Stdout是<code>*os.File</code>类型;在Sprintf函数中的第一个参数&amp;buf是一个指向可以写入字节的内存缓冲区。然而它并不是一个文件类型,尽管它在某种意义上和文件类型相似。</p>
<p>即使是Fprintf函数中的第一个参数,它也不是一个文件类型。它是io.Writer类型,这是一个接口类型定义如下:</p>
<pre><code class="language-go">package io

// Writer is the interface that wraps the basic Write method.
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit ece421d

Please sign in to comment.