当前位置:文档之家› 标点符号中英对照表

标点符号中英对照表


Along Zeng CDMA_BTS, R&D, GDNT ESN:6-554-8752
2.算术符号表
符号 + * / % ** e/E ++ -英文说明 addition subtraction/negative multiplication division modulus exponential a power-of-10 indicator autoincrement autodecrement 中文说明 加法运算 减法运算/取负 乘法运算 除法运算 取模运算 > <= >= 英文说明 equal to not equal to less than greater than less than or equal to greater than or equal to 中文说明 等于 不等于 小于 大于 小于等于 大于等于
英文读法:
2+3 5.1 - 2.4 3 * 12
2 plus 3 5.1 minus 2.4 3 times 12
14 / 2 -12e-24
14 divided by 2 neagtive 12 times 10 to the -24th
对于++和--又分前缀和后缀,在 Perl 中称为 preincrement/predecrement 和 postincrement/postdecrement。
5.位运算符号表
符号 英文说明 中文说明
符号 & | ^ << >> ~
英文说明 bitwise-and operator bitwise-or operator bitwise-xor operator bitwise shift left bitwise shift right bitwise negation(unary bit complement)
4.逻辑符号表
符号 && || ! ?: 英文说明 and(logical AND operator) or(logical OR operator) not(logical NOT operator) ternary operator 中文说明 逻辑与 逻辑或 逻辑非 三元运算符
&&、||、?:又称为 Partial-Evaluation Operators,以及 short-circuit logical operators。
中文说明
6.赋值符号表
符号 = +=, *=, ... 英文说明 assignment operator binary assignment operator 中文说明 赋值
7.其他符号表(来自 Perl)
符号 . <> .. => -> =~ <=> 英文说明 concatenation angle brackets/diamond operator range operator big arrow small arrow binding operator spaceship operator 中文说明 字符串连接
标点符号中英对照表
1.键盘符号表
符号 Esc ` ~ ! @ # $ % ^ & * () _ = + \ | {} [] ; : 英文说明 escape backquote tilde exclamation at sign pound sign dollar sign percent sign caret ampersand star/asterisk parentheses hyphen/minus underscore equals sign plus backslash vertical bar (curly) braces (square) brackets semicolon colon 星号 括号(小括号) 连字符/减号 下划线 等于号 加号 反斜线 竖线 花括号(大括号) 方括号(中括号) 分号 冒号 美元符号 百分号 中文说明 转义 反引号 音标符号 感叹号
符号 ' " < , > . ? /
英文说明 single quote/apostrophe double quote less than sign comma greater than sign period/dot question mark forward slash
中文说明 单引号/所有格符号 双引号 小于号 逗号 大于号 句号/点 问号 斜线
相关主题