René's URL Explorer Experiment


Title: 函数初尝试 — Sphinx xyzstyle Theme

Open Graph Title: 函数初尝试

Description: 回顾 流程控制 中使用的代码块会发现:有一些代码块被反复使用,每次编写同样的代码片段,完全在做低效的工作。 函数 (function)是一个具名的语句序列,能够返回计算结果(称为 返回值 )。 通俗地说,把那些重复使用的代码块起一个名字(即函数名),后面直接使用该名字来执行其所代表的代码块。可以看出:函数的语义与变量很相似。 使用函数的好处,出来开头说的那些外,还有: 实现计算逻辑的分离;,...

Open Graph Description: 回顾 流程控制 中使用的代码块会发现:有一些代码块被反复使用,每次编写同样的代码片段,完全在做低效的工作。 函数 (function)是一个具名的语句序列,能够返回计算结果(称为 返回值 )。 通俗地说,把那些重复使用的代码块起一个名字(即函数名),后面直接使用该名字来执行其所代表的代码块。可以看出:函数的语义与变量很相似。 使用函数的好处,出来开头说的那些外,还有: 实现计算逻辑的分离;,...

Opengraph URL: https://cpp-booklib.readthedocs.io/zh-cn/latest/start/simple-function.html

direct link

Domain: xinetzone.github.io

og:typewebsite
og:site_namecpp-book
og:image:width1146
og:image:height600
og:imagehttps://cpp-booklib.readthedocs.io/zh-cn/latest/_images/social_previews/summary_start_simple-function_8f781da9.png
og:image:alt回顾 流程控制 中使用的代码块会发现:有一些代码块被反复使用,每次编写同样的代码片段,完全在做低效的工作。 函数 (function)是一个具名的语句序列,能够返回计算结果(称为 返回值 )。 通俗地说,把那些重复使用的代码块起一个名字(即函数名),后面直接使用该名字来执行其所代表的代码块。可以看出:函数的语义与变量很相似。 使用函数的好处,出来开头说的那些外,还有: 实现计算逻辑的分离;,...
twitter:cardsummary_large_image

Links:

Skip to main contenthttps://xinetzone.github.io/cpp-book/start/simple-function.html#main-content
https://xinetzone.github.io/cpp-book/index.html
知乎https://www.zhihu.com/people/xinetzone
简书https://www.jianshu.com/u/4302480a3e8e
B站https://space.bilibili.com/252192181
https://www.cnblogs.com/q735613050/
领英https://www.linkedin.com/in/xinet
预备知识https://xinetzone.github.io/cpp-book/prepare/index.html
数字系统与信息表示https://xinetzone.github.io/cpp-book/prepare/00_digital.html
用电表示计算(raw)https://xinetzone.github.io/cpp-book/prepare/01_electricity.html
什么是编程https://xinetzone.github.io/cpp-book/prepare/02_programming.html
快速上手 C++https://xinetzone.github.io/cpp-book/start/index.html
使用代码https://xinetzone.github.io/cpp-book/start/use.html
初步认知https://xinetzone.github.io/cpp-book/start/initial-awareness.html
流程控制https://xinetzone.github.io/cpp-book/start/controlflow.html
语句误用https://xinetzone.github.io/cpp-book/start/statement-errors.html
函数初尝试https://xinetzone.github.io/cpp-book/start/simple-function.html
类型https://xinetzone.github.io/cpp-book/start/type.html
常量表达式https://xinetzone.github.io/cpp-book/start/constexpr.html
声明与定义https://xinetzone.github.io/cpp-book/start/statement.html
变量https://xinetzone.github.io/cpp-book/start/variable.html
https://xinetzone.github.io/cpp-book/start/class/index.html
用户自定义类型https://xinetzone.github.io/cpp-book/start/class/intro.html
演化一个类https://xinetzone.github.io/cpp-book/start/class/start.html
映射到硬件https://xinetzone.github.io/cpp-book/start/memory/index.html
数组https://xinetzone.github.io/cpp-book/start/memory/array.html
地址与指针https://xinetzone.github.io/cpp-book/start/memory/pointer.html
自由空间和引用https://xinetzone.github.io/cpp-book/start/memory/free-store.html
字面值常量https://xinetzone.github.io/cpp-book/start/literals.html
作用域https://xinetzone.github.io/cpp-book/start/scope.html
输入输出流https://xinetzone.github.io/cpp-book/start/iostream.html
基础概念https://xinetzone.github.io/cpp-book/start/concepts/index.html
布尔值https://xinetzone.github.io/cpp-book/start/concepts/01_bool.html
表达式https://xinetzone.github.io/cpp-book/start/concepts/expression.html
临时https://xinetzone.github.io/cpp-book/start/concepts/raw.html
成员访问https://xinetzone.github.io/cpp-book/start/member.html
学习手册https://xinetzone.github.io/cpp-book/books/index.html
C++ 语言导学https://xinetzone.github.io/cpp-book/tour/index.html
C++ 程序设计:原理与实践https://xinetzone.github.io/cpp-book/programming/index.html
C++ 程序设计语言https://xinetzone.github.io/cpp-book/guide/index.html
练习簿https://xinetzone.github.io/cpp-book/exercises/index.html
std::accumulatehttps://xinetzone.github.io/cpp-book/exercises/accumulate.html
C++ 调用 C 程序https://xinetzone.github.io/cpp-book/exercises/c2cpp.html
C 调用 C++https://xinetzone.github.io/cpp-book/exercises/cpp2c.html
fopenhttps://xinetzone.github.io/cpp-book/exercises/fopen.html
获取浮点数的尾数和指数https://xinetzone.github.io/cpp-book/exercises/frexp.html
std::generatehttps://xinetzone.github.io/cpp-book/exercises/generate.html
反射https://xinetzone.github.io/cpp-book/exercises/reflection.html
size_thttps://xinetzone.github.io/cpp-book/exercises/size_t.html
struct+enumhttps://xinetzone.github.io/cpp-book/exercises/struct-enum.html
时间模块 chronohttps://xinetzone.github.io/cpp-book/exercises/timer.html
vector 的切片或子向量https://xinetzone.github.io/cpp-book/exercises/vector-slice.html
xeus-cling 调用 C 代码https://xinetzone.github.io/cpp-book/exercises/xeus-cling-c.html
自制编译器https://xinetzone.github.io/cpp-book/compiler/index.html
测试https://xinetzone.github.io/cpp-book/compiler/intro.html
参考https://xinetzone.github.io/cpp-book/refs/index.html
术语表https://xinetzone.github.io/cpp-book/refs/glossary/index.html
常用术语https://xinetzone.github.io/cpp-book/refs/glossary/simple.html
Bjarne Stroustrup's C++ Glossaryhttps://xinetzone.github.io/cpp-book/refs/glossary/Stroustrup-Glossary.en.html
书籍与标准https://xinetzone.github.io/cpp-book/refs/glossary/book.html
其他术语https://xinetzone.github.io/cpp-book/refs/glossary/other.html
百科https://xinetzone.github.io/cpp-book/wiki/index.html
计算之比特位宽https://xinetzone.github.io/cpp-book/wiki/BitWidth.html
二进制码https://xinetzone.github.io/cpp-book/wiki/binary-code.html
浮点数https://xinetzone.github.io/cpp-book/wiki/float.html
#ifndefhttps://xinetzone.github.io/cpp-book/wiki/ifndef.html
其他https://xinetzone.github.io/cpp-book/other/index.html
CRTPhttps://xinetzone.github.io/cpp-book/other/crtp.html
暂存区https://xinetzone.github.io/cpp-book/refs/note.html
关于https://xinetzone.github.io/cpp-book/about/index.html
Covenant Code of Conducthttps://xinetzone.github.io/cpp-book/CODE_OF_CONDUCT.html
Contributinghttps://xinetzone.github.io/cpp-book/CONTRIBUTING.html
Security Policyhttps://xinetzone.github.io/cpp-book/SECURITY.html
变更日志https://xinetzone.github.io/cpp-book/CHANGELOG.html
回收站https://xinetzone.github.io/cpp-book/draft/index.html
C++11 新特性及其学习方法(草稿)https://xinetzone.github.io/cpp-book/draft/draft.html
C++ 初识(raw)https://xinetzone.github.io/cpp-book/draft/draft2.html
Binder https://mybinder.org/v2/gh/xinetzone/cpp-book/main?urlpath=lab/tree/doc/start/simple-function.ipynb
Colab https://colab.research.google.com/github/xinetzone/cpp-book/blob/main/doc/start/simple-function.ipynb
Deepnote https://deepnote.com/launch?url=https%3A%2F%2Fgithub.com%2Fxinetzone%2Fcpp-book%2Fblob%2Fmain%2Fdoc/start/simple-function.ipynb
Repository https://github.com/xinetzone/cpp-book
Show source https://github.com/xinetzone/cpp-book/blob/main/doc/start/simple-function.ipynb?plain=1
Suggest edit https://github.com/xinetzone/cpp-book/edit/main/doc/start/simple-function.ipynb
Open issue https://github.com/xinetzone/cpp-book/issues/new?title=Issue%20on%20page%20%2Fstart/simple-function.html&body=Your%20issue%20content%20here.
.ipynb https://xinetzone.github.io/cpp-book/_sources/start/simple-function.ipynb
函数定义https://xinetzone.github.io/cpp-book/start/simple-function.html#id2
函数声明https://xinetzone.github.io/cpp-book/start/simple-function.html#id3
main 函数https://xinetzone.github.io/cpp-book/start/simple-function.html#main
#https://xinetzone.github.io/cpp-book/start/simple-function.html#id1
C++ 函数与类型https://www.bilibili.com/video/BV1RS4y1M7UG/
流程控制https://xinetzone.github.io/cpp-book/start/controlflow.html
#https://xinetzone.github.io/cpp-book/start/simple-function.html#id2
#https://xinetzone.github.io/cpp-book/start/simple-function.html#id3
#https://xinetzone.github.io/cpp-book/start/simple-function.html#main
上一页 语句误用 https://xinetzone.github.io/cpp-book/start/statement-errors.html
下一页 类型 https://xinetzone.github.io/cpp-book/start/type.html
函数定义https://xinetzone.github.io/cpp-book/start/simple-function.html#id2
函数声明https://xinetzone.github.io/cpp-book/start/simple-function.html#id3
main 函数https://xinetzone.github.io/cpp-book/start/simple-function.html#main

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.