From a52c112b608765b76f4abb56658793487e1969bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=82=9C=E8=93=A5?= <10036316+li-weiying@user.noreply.gitee.com> Date: Fri, 29 Apr 2022 02:34:22 +0000 Subject: [PATCH] =?UTF-8?q?add=2019=E5=8F=B7=E6=9D=8E=E7=82=9C=E8=93=A5/?= =?UTF-8?q?=E7=AC=94=E8=AE=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\347\254\224\350\256\260" | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 "19\345\217\267\346\235\216\347\202\234\350\223\245/\347\254\224\350\256\260" diff --git "a/19\345\217\267\346\235\216\347\202\234\350\223\245/\347\254\224\350\256\260" "b/19\345\217\267\346\235\216\347\202\234\350\223\245/\347\254\224\350\256\260" new file mode 100644 index 0000000..306fb7b --- /dev/null +++ "b/19\345\217\267\346\235\216\347\202\234\350\223\245/\347\254\224\350\256\260" @@ -0,0 +1,41 @@ +值类型 +类型 描述 范围 默认值 +bool 布尔值 True 或 False False +byte 8 位无符号整数 0 到 255 0 +char 16 位 Unicode 字符 U +0000 到 U +ffff '\0' +decimal 128 位精确的十进制值,28-29 有效位数 (-7.9 x 1028 到 7.9 x 1028) / 100 到 28 0.0M +double 64 位双精度浮点型 (+/-)5.0 x 10-324 到 (+/-)1.7 x 10308 0.0D +float 32 位单精度浮点型 -3.4 x 1038 到 + 3.4 x 1038 0.0F +int 32 位有符号整数类型 -2,147,483,648 到 2,147,483,647 0 +long 64 位有符号整数类型 -9,223,372,036,854,775,808 到 9,223,372,036,854,775,807 0L +sbyte 8 位有符号整数类型 -128 到 127 0 +short 16 位有符号整数类型 -32,768 到 32,767 0 +uint 32 位无符号整数类型 0 到 4,294,967,295 0 +ulong 64 位无符号整数类型 0 到 18,446,744,073,709,551,615 0 +ushort 16 位无符号整数类型 0 到 65,535 0 +算术运算符 +下表显示了 C# 支持的所有算术运算符。假设变量 A 的值为 10,变量 B 的值为 20,则: + +运算符 描述 实例 ++ 把两个操作数相加 A + B 将得到 30 +- 从第一个操作数中减去第二个操作数 A - B 将得到 -10 +* 把两个操作数相乘 A * B 将得到 200 +/ 分子除以分母 B / A 将得到 2 +% 取模运算符,整除后的余数 B % A 将得到 0 +++ 自增运算符,整数值增加 1 A++ 将得到 11 +-- 自减运算符,整数值减少 1 A-- 将得到 9 +字符常量 +转义序列 含义 +\ \ 字符 +' ' 字符 +" " 字符 +? ? 字符 +\a Alert 或 bell +\b 退格键(Backspace) +\f 换页符(Form feed) +\n 换行符(Newline) +\r 回车 +\t 水平制表符 tab +\v 垂直制表符 tab +\ooo 一到三位的八进制数 +\xhh . . . 一个或多个数字的十六进制数 \ No newline at end of file -- Gitee