黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C# 運算符重載

c# 運算符重載

您可以重定義或重載 c# 中內置的運算符。因此,程序員也可以使用用戶自定義類型的運算符。重載運算符是具有特殊名稱的函數,是通過關鍵字 operator 后跟運算符的符號來定義的。與其他函數一樣,重載運算符有返回類型和參數列表。

例如,請看下面的函數:

public static box operator+ (box b, box c)
{
? ?box box = new box();
? ?box.length = b.length + c.length;
? ?box.breadth = b.breadth + c.breadth;
? ?box.height = b.height + c.height;
? ?return box;
}

上面的函數為用戶自定義的類 box 實現了加法運算符(+)。它把兩個 box 對象的屬性相加,并返回相加后的 box 對象。

 

1. 運算符重載的實現

下面的程序演示了完整的實現:

using system;

namespace operatorovlapplication
{
? ?class box
? ?{
? ? ? private double length; ? ? ?// 長度
? ? ? private double breadth; ? ? // 寬度
? ? ? private double height; ? ? ?// 高度

? ? ? public double getvolume()
? ? ? {
? ? ? ? ?return length * breadth * height;
? ? ? }
? ? ? public void setlength( double len )
? ? ? {
? ? ? ? ?length = len;
? ? ? }

? ? ? public void setbreadth( double bre )
? ? ? {
? ? ? ? ?breadth = bre;
? ? ? }

? ? ? public void setheight( double hei )
? ? ? {
? ? ? ? ?height = hei;
? ? ? }
? ? ? // 重載 + 運算符來把兩個 box 對象相加
? ? ? public static box operator+ (box b, box c)
? ? ? {
? ? ? ? ?box box = new box();
? ? ? ? ?box.length = b.length + c.length;
? ? ? ? ?box.breadth = b.breadth + c.breadth;
? ? ? ? ?box.height = b.height + c.height;
? ? ? ? ?return box;
? ? ? }

? ?}

? ?class tester
? ?{
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?box box1 = new box(); ? ? ? ? // 聲明 box1,類型為 box
? ? ? ? ?box box2 = new box(); ? ? ? ? // 聲明 box2,類型為 box
? ? ? ? ?box box3 = new box(); ? ? ? ? // 聲明 box3,類型為 box
? ? ? ? ?double volume = 0.0; ? ? ? ? ?// 體積

? ? ? ? ?// box1 詳述
? ? ? ? ?box1.setlength(6.0);
? ? ? ? ?box1.setbreadth(7.0);
? ? ? ? ?box1.setheight(5.0);

? ? ? ? ?// box2 詳述
? ? ? ? ?box2.setlength(12.0);
? ? ? ? ?box2.setbreadth(13.0);
? ? ? ? ?box2.setheight(10.0);

? ? ? ? ?// box1 的體積
? ? ? ? ?volume = box1.getvolume();
? ? ? ? ?console.writeline("box1 的體積: {0}", volume);

? ? ? ? ?// box2 的體積
? ? ? ? ?volume = box2.getvolume();
? ? ? ? ?console.writeline("box2 的體積: {0}", volume);

? ? ? ? ?// 把兩個對象相加
? ? ? ? ?box3 = box1 + box2;

? ? ? ? ?// box3 的體積
? ? ? ? ?volume = box3.getvolume();
? ? ? ? ?console.writeline("box3 的體積: {0}", volume);
? ? ? ? ?console.readkey();
? ? ? }
? ?}
}

當上面的代碼被編譯和執(zhí)行時,它會產生下列結果:

box1 的體積: 210
box2 的體積: 1560
box3 的體積: 5400

 

2. 可重載和不可重載運算符

下表描述了 c# 中運算符重載的能力:

運算符描述
+, -, !, ~, ++, --這些一元運算符只有一個操作數,且可以被重載。
+, -, *, /, %這些二元運算符帶有兩個操作數,且可以被重載。
==, !=, <, >, <=, >=這些比較運算符可以被重載。
&&, ||這些條件邏輯運算符不能被直接重載。
+=, -=, *=, /=, %=這些賦值運算符不能被重載。
=, ., ?:, ->, new, is, sizeof, typeof這些運算符不能被重載。

 

3. 范例

針對上述討論,讓我們擴展上面的范例,重載更多的運算符:

using system;

namespace operatorovlapplication
{
? ? class box
? ? {
? ? ? ?private double length; ? ? ?// 長度
? ? ? ?private double breadth; ? ? // 寬度
? ? ? ?private double height; ? ? ?// 高度
? ? ? 
? ? ? ?public double getvolume()
? ? ? ?{
? ? ? ? ?return length * breadth * height;
? ? ? ?}
? ? ? public void setlength( double len )
? ? ? {
? ? ? ? ? length = len;
? ? ? }

? ? ? public void setbreadth( double bre )
? ? ? {
? ? ? ? ? breadth = bre;
? ? ? }

? ? ? public void setheight( double hei )
? ? ? {
? ? ? ? ? height = hei;
? ? ? }
? ? ? // 重載 + 運算符來把兩個 box 對象相加
? ? ? public static box operator+ (box b, box c)
? ? ? {
? ? ? ? ? box box = new box();
? ? ? ? ? box.length = b.length + c.length;
? ? ? ? ? box.breadth = b.breadth + c.breadth;
? ? ? ? ? box.height = b.height + c.height;
? ? ? ? ? return box;
? ? ? }
? ? ? 
? ? ? public static bool operator == (box lhs, box rhs)
? ? ? {
? ? ? ? ? bool status = false;
? ? ? ? ? if (lhs.length == rhs.length && lhs.height == rhs.height 
? ? ? ? ? ? ?&& lhs.breadth == rhs.breadth)
? ? ? ? ? {
? ? ? ? ? ? ? status = true;
? ? ? ? ? }
? ? ? ? ? return status;
? ? ? }
? ? ? public static bool operator !=(box lhs, box rhs)
? ? ? {
? ? ? ? ? bool status = false;
? ? ? ? ? if (lhs.length != rhs.length || lhs.height != rhs.height 
? ? ? ? ? ? ? || lhs.breadth != rhs.breadth)
? ? ? ? ? {
? ? ? ? ? ? ? status = true;
? ? ? ? ? }
? ? ? ? ? return status;
? ? ? }
? ? ? public static bool operator <(box lhs, box rhs)
? ? ? {
? ? ? ? ? bool status = false;
? ? ? ? ? if (lhs.length < rhs.length && lhs.height 
? ? ? ? ? ? ? < rhs.height && lhs.breadth < rhs.breadth)
? ? ? ? ? {
? ? ? ? ? ? ? status = true;
? ? ? ? ? }
? ? ? ? ? return status;
? ? ? }

? ? ? public static bool operator >(box lhs, box rhs)
? ? ? {
? ? ? ? ? bool status = false;
? ? ? ? ? if (lhs.length > rhs.length && lhs.height 
? ? ? ? ? ? ? > rhs.height && lhs.breadth > rhs.breadth)
? ? ? ? ? {
? ? ? ? ? ? ? status = true;
? ? ? ? ? }
? ? ? ? ? return status;
? ? ? }

? ? ? public static bool operator <=(box lhs, box rhs)
? ? ? {
? ? ? ? ? bool status = false;
? ? ? ? ? if (lhs.length <= rhs.length && lhs.height 
? ? ? ? ? ? ? <= rhs.height && lhs.breadth <= rhs.breadth)
? ? ? ? ? {
? ? ? ? ? ? ? status = true;
? ? ? ? ? }
? ? ? ? ? return status;
? ? ? }

? ? ? public static bool operator >=(box lhs, box rhs)
? ? ? {
? ? ? ? ? bool status = false;
? ? ? ? ? if (lhs.length >= rhs.length && lhs.height 
? ? ? ? ? ? ?>= rhs.height && lhs.breadth >= rhs.breadth)
? ? ? ? ? {
? ? ? ? ? ? ? status = true;
? ? ? ? ? }
? ? ? ? ? return status;
? ? ? }
? ? ? public override string tostring()
? ? ? {
? ? ? ? ? return string.format("({0}, {1}, {2})", length, breadth, height);
? ? ? }
? ?
? ?}
? ? 
? ?class tester
? ?{
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? box box1 = new box(); ? ? ? ? ?// 聲明 box1,類型為 box
? ? ? ? box box2 = new box(); ? ? ? ? ?// 聲明 box2,類型為 box
? ? ? ? box box3 = new box(); ? ? ? ? ?// 聲明 box3,類型為 box
? ? ? ? box box4 = new box();
? ? ? ? double volume = 0.0; ? // 體積

? ? ? ? // box1 詳述
? ? ? ? box1.setlength(6.0);
? ? ? ? box1.setbreadth(7.0);
? ? ? ? box1.setheight(5.0);

? ? ? ? // box2 詳述
? ? ? ? box2.setlength(12.0);
? ? ? ? box2.setbreadth(13.0);
? ? ? ? box2.setheight(10.0);

? ? ? ?// 使用重載的 tostring() 顯示兩個盒子
? ? ? ? console.writeline("box1: {0}", box1.tostring());
? ? ? ? console.writeline("box2: {0}", box2.tostring());
? ? ? ? 
? ? ? ? // box1 的體積
? ? ? ? volume = box1.getvolume();
? ? ? ? console.writeline("box1 的體積: {0}", volume);

? ? ? ? // box2 的體積
? ? ? ? volume = box2.getvolume();
? ? ? ? console.writeline("box2 的體積: {0}", volume);

? ? ? ? // 把兩個對象相加
? ? ? ? box3 = box1 + box2;
? ? ? ? console.writeline("box3: {0}", box3.tostring());
? ? ? ? // box3 的體積
? ? ? ? volume = box3.getvolume();
? ? ? ? console.writeline("box3 的體積: {0}", volume);

? ? ? ? //comparing the boxes
? ? ? ? if (box1 > box2)
? ? ? ? ? console.writeline("box1 大于 box2");
? ? ? ? else
? ? ? ? ? console.writeline("box1 不大于 box2");
? ? ? ? if (box1 < box2)
? ? ? ? ? console.writeline("box1 小于 box2");
? ? ? ? else
? ? ? ? ? console.writeline("box1 不小于 box2");
? ? ? ? if (box1 >= box2)
? ? ? ? ? console.writeline("box1 大于等于 box2");
? ? ? ? else
? ? ? ? ? console.writeline("box1 不大于等于 box2");
? ? ? ? if (box1 <= box2)
? ? ? ? ? console.writeline("box1 小于等于 box2");
? ? ? ? else
? ? ? ? ? console.writeline("box1 不小于等于 box2");
? ? ? ? if (box1 != box2)
? ? ? ? ? console.writeline("box1 不等于 box2");
? ? ? ? else
? ? ? ? ? console.writeline("box1 等于 box2");
? ? ? ? box4 = box3;
? ? ? ? if (box3 == box4)
? ? ? ? ? console.writeline("box3 等于 box4");
? ? ? ? else
? ? ? ? ? console.writeline("box3 不等于 box4");

? ? ? ? console.readkey();
? ? ? }
? ? }
}

當上面的代碼被編譯和執(zhí)行時,它會產生下列結果:

box1: (6, 7, 5)
box2: (12, 13, 10)
box1 的體積: 210
box2 的體積: 1560
box3: (18, 20, 15)
box3 的體積: 5400
box1 不大于 box2
box1 小于 box2
box1 不大于等于 box2
box1 小于等于 box2
box1 不等于 box2
box3 等于 box4

下一節(jié):c# 接口 interface

c# 教程

相關文章