# 表达式 # 定义 An expression is a sequence of one or more operands and zero or more operators that can be evaluated to a sing value, object, method, or namespace. // Single Valueint x = 100;// Object(new Form()).ShowDialog();// MethodAction myActino = new Action(Console.WriteLine); // Console.WriteLine...
操作符(Operator)也译为 “运算符” 操作符是用来操作数据的,被操作符操作的数据称为操作数(Operand) # 本质 操作符的本质是函数(即算法)的 “简记法” 操作符不能脱离与它关联的数据类型 可以说操作符就是与固定数据类型相关联的一套基本算法的简记法 为自定义数据类型创建操作符 示例:不能脱离与它关联的数据类型 int x = 5;int y = 4;int z = x / y;Console.WriteLine(z); // 1double a = 5.0;double b = 4.0;double c = a / b;Console.WriteLine(c);...