Skip to content

Commit c364908

Browse files
committed
deploy: 04f2c8f
1 parent bdea9e5 commit c364908

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

functional/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,7 @@ <h2 id="bind">bind 为函数对象绑定参数</h2>
980980
}
981981

982982
int main() {
983+
auto hello2 = std::bind(hello, 2, std::placeholders::_1);
983984
fmt::println(&quot;main 调用 hello2(3) 结果:{}&quot;, hello2(3));
984985
fmt::println(&quot;main 调用 hello2(4) 结果:{}&quot;, hello2(4));
985986
fmt::println(&quot;main 调用 hello2(5) 结果:{}&quot;, hello2(5));

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ <h2 id="_1">前言</h2>
194194
<blockquote>
195195
<p><img src="./img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一峰电子邮件,提醒你小彭老师更新了。</p>
196196
</blockquote>
197-
<p>更新时间:2024年07月23日 12:55:22 (UTC+08:00)</p>
197+
<p>更新时间:2024年07月24日 23:15:55 (UTC+08:00)</p>
198198
<h2 id="_2">格式约定</h2>
199199
<blockquote>
200200
<p><img src="./img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 用这种颜色字体书写的内容是温馨提示</p>

print_page/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h2 id="index-_1">前言</h2>
239239
<blockquote>
240240
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一峰电子邮件,提醒你小彭老师更新了。</p>
241241
</blockquote>
242-
<p>更新时间:2024年07月23日 12:55:22 (UTC+08:00)</p>
242+
<p>更新时间:2024年07月24日 23:15:55 (UTC+08:00)</p>
243243
<h2 id="index-_2">格式约定</h2>
244244
<blockquote>
245245
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 用这种颜色字体书写的内容是温馨提示</p>
@@ -1544,6 +1544,7 @@ <h2 id="functional-bind">bind 为函数对象绑定参数</h2>
15441544
}
15451545

15461546
int main() {
1547+
auto hello2 = std::bind(hello, 2, std::placeholders::_1);
15471548
fmt::println(&quot;main 调用 hello2(3) 结果:{}&quot;, hello2(3));
15481549
fmt::println(&quot;main 调用 hello2(4) 结果:{}&quot;, hello2(4));
15491550
fmt::println(&quot;main 调用 hello2(5) 结果:{}&quot;, hello2(5));

search/search_index.json

+1-1
Large diffs are not rendered by default.

sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)