c#比较运算符
大于> 小于 < 等于 == 不等于 != 大于等于 >= 小于等于 <=
要注意的是等于是用了2个等号,区别于赋值的一个等号,初次学习编程的时候,经常会在判断等于时候少写一个等号变成赋值。
比较型的运算返回的结果不是数字而是布尔型的真和假。在C和VBS中,用0表示假,非0表示真。在c#中不能这样操作,参考下面的代码,这个代码在c中是正确的,在c#中运行会错误,提示你常量不能转换成布尔类型:
if(0)
{
}
请看下面的例子:
using System;
class Test{
public static void Main(){
int x=3;
int y=4;
Console.WriteLine();
Console.WriteLine("x<y is {0}",(x<y));
Console.WriteLine("x>y is {0}",(x>y));
Console.WriteLine("x==y is {0}",(x==y));
Console.WriteLine("x!=y is {0}",(x!=y));
Console.WriteLine("x==y is {0}",((++x)==y));
Console.WriteLine("x is {0}",x);
}
}