Please enable JavaScript.
Coggle requires JavaScript to display documents.
Diff (基本用法 Basic instructions (流程控制 Control Flow (其他 (break; continue; …
Diff
基本用法
Basic instructions
类型标识符
Type identifiers
整数
Integers
浮点数
Floating point
别的变量类型
文本类型
字符串类型
字符类型
布尔类型
枚举类型
对象类型
派生类型
Derived types
数组
Array
其他
变量和常量声明
流程控制
Control Flow
条件语句
Conditional statements
循环语句
Loop statements
异常
Exceptions
其他
break;
continue;
goto;
yield return;
函数
Functions
类型转换
Type conversions
标准流输入输出
Standard stream I/O
读取命令行参数
Reading command-line arguments
命令执行
Execution of commands
基本语法
Basic Syntax
语句
Statements
约定三要素:
语句分隔符
语句结束符
续行
表达式
Expressions
一个或多个常量,变量,
运算符,函数结合在一起,
解释并计算出另外一个值
4种语法结构
前缀表示法
prefix notation
中缀表示法
infix notation
后缀表示法
suffix, postfix notation
类数学表示法
math-like notation
库
Libraries
导入库按级别分类:
模块 module,
包 package,
类 class,
过程 procedure
块
Blocks
两个或多个表达式,语句
或别的代码单元
构成的一个整体
注释
Comments
分类:
按风格:内联注释,块注释
按解析规则:忽略,插入,存入内存
按递归性:可嵌套,不可嵌套
按用途:文档字符串,一次性评论,其他
赋值语句
x = expr
运算符
关键字
变量