首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

小弟我想重载true和false如何做

2012-01-08 
我想重载true和false怎么做rt[解决办法]public class T{public int _xpublic T(int x){this._x x}publ

我想重载true和false怎么做
rt

[解决办法]
public class T
{
public int _x;
public T(int x)
{
this._x = x;
}
public static bool operator true(T x)
{
return x._x % 2 == 0;
}
public static bool operator false(T x)
{
return x._x % 2 != 0;
}
}
class Program
{
static void Main(string[] args)
{
T t2 = new T(2);
T t1 = new T(1);
if (t2)
{
Console.WriteLine(true);
}
}
}
[解决办法]
写个例子程序,就明白了。
public class MyClass
{
public static bool operator true(MyClass my)
{
if (my.test1 == true && my.test2 != true)
return true;
else if (my.test1 != true && my.test2 == true)
return true;
else return false;
}

public static bool operator false(MyClass my)
{
if (my.test1 == true && my.test2 != true)
return true;
else if (my.test1 != true && my.test2 == true)
return true;
else return false;
}

public bool test1;
public bool test2;


}

class Program
{
public static void Main()
{
MyClass my=new MyClass();
my.test1 = true;
my.test2 = false;
if (my)
Console.WriteLine( "first true ");
else
Console.WriteLine( "first false ");
my.test1 = false;
if (my)
Console.WriteLine( "second true ");
else
Console.WriteLine( "second false ");
Console.ReadKey();
}
}
[解决办法]
operator true(MyClass my)形成了从MyClass到bool的隐式转换,这个运算符的重载感觉比较像隐式转换重载,有了这个,就相当于重载了||和&&运算符(这个才是重点)。当然也可能有其他作用,这个东西用得不多,我也就是了解到这个程度。

热点排行