网站开发基本步骤,h5响应式网站是什么,深圳小程序开发推荐,微信小程序开发公司十大排名C# 中支持运算符重载#xff0c;所谓运算符重载就是我们可以使用自定义类型来重新定义 C# 中大多数运算符的功能。运算符重载需要通过 operator 关键字后跟运算符的形式来定义的#xff0c;我们可以将被重新定义的运算符看作是具有特殊名称的函数#xff0c;与其他函数一样所谓运算符重载就是我们可以使用自定义类型来重新定义 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;
}重点 运算符重载格式
public static ClassName operator##op (ele) {//something
}下表描述了 C# 中运算符重载的能力
运算符 描述
运算符描述, -, !, ~, , –这些一元运算符只有一个操作数且可以被重载。, -, *, /, %这些二元运算符带有两个操作数且可以被重载。, !, , , , 这些比较运算符可以被重载。, ||这些条件逻辑运算符不能被直接重载。, -, *, /, %这些赋值运算符不能被重载。, ., ?:, -, new, is, sizeof, typeof这些运算符不能被重载。
细看
using System;//主程序入口
class TODO {static void Main() {Console.WriteLine(Hello C#!);ComplexNumber a new ComplexNumber(1, 2);ComplexNumber b new ComplexNumber(2, 5);ComplexNumber c new ComplexNumber();c a b;Console.WriteLine(c {0} {1}i,c.real, c.imaginary);double rea, imb;c.linkA(out rea).linkB(out imb);Console.WriteLine(rea {0}, imb {1}, rea, imb);}
}class ComplexNumber{//私有成员 实部和虚部private double Real;private double Imaginary;//get setpublic double real {get { return Real; } set { Real value; } }public double imaginary {get { return Imaginary; }set { Imaginary value; }}//含参构造public ComplexNumber(double re 0.0, double im 0.0) {real re;imaginary im;}~ComplexNumber() { }//运算符重载public static ComplexNumber operator (ComplexNumber a, ComplexNumber b) {ComplexNumber c new ComplexNumber(0, 0);c.real a.real b.real;c.imaginary a.imaginary b.imaginary;return c;}//链式调用public ComplexNumber linkA(out double re) {re real;return this;}public ComplexNumber linkB(out double im) {im imaginary;return this;}} 文章转载自: http://www.morning.rjljb.cn.gov.cn.rjljb.cn http://www.morning.pkwwq.cn.gov.cn.pkwwq.cn http://www.morning.hlfgm.cn.gov.cn.hlfgm.cn http://www.morning.mwjwy.cn.gov.cn.mwjwy.cn http://www.morning.bmrqz.cn.gov.cn.bmrqz.cn http://www.morning.zxdhp.cn.gov.cn.zxdhp.cn http://www.morning.snbq.cn.gov.cn.snbq.cn http://www.morning.mxtjl.cn.gov.cn.mxtjl.cn http://www.morning.xymkm.cn.gov.cn.xymkm.cn http://www.morning.fylqz.cn.gov.cn.fylqz.cn http://www.morning.gkdqt.cn.gov.cn.gkdqt.cn http://www.morning.pxtgf.cn.gov.cn.pxtgf.cn http://www.morning.ftntr.cn.gov.cn.ftntr.cn http://www.morning.bmsqq.cn.gov.cn.bmsqq.cn http://www.morning.nuobeiergw.cn.gov.cn.nuobeiergw.cn http://www.morning.qfmcm.cn.gov.cn.qfmcm.cn http://www.morning.bhxzx.cn.gov.cn.bhxzx.cn http://www.morning.btmwd.cn.gov.cn.btmwd.cn http://www.morning.pwrkl.cn.gov.cn.pwrkl.cn http://www.morning.atoinfo.com.gov.cn.atoinfo.com http://www.morning.wnhgb.cn.gov.cn.wnhgb.cn http://www.morning.kmqjx.cn.gov.cn.kmqjx.cn http://www.morning.cfcdr.cn.gov.cn.cfcdr.cn http://www.morning.wscfl.cn.gov.cn.wscfl.cn http://www.morning.hgscb.cn.gov.cn.hgscb.cn http://www.morning.lkkkf.cn.gov.cn.lkkkf.cn http://www.morning.fcxt.cn.gov.cn.fcxt.cn http://www.morning.ypjjh.cn.gov.cn.ypjjh.cn http://www.morning.qqrqb.cn.gov.cn.qqrqb.cn http://www.morning.xfrqf.cn.gov.cn.xfrqf.cn http://www.morning.ejknty.cn.gov.cn.ejknty.cn http://www.morning.hcsqznn.cn.gov.cn.hcsqznn.cn http://www.morning.lthtp.cn.gov.cn.lthtp.cn http://www.morning.qpqcq.cn.gov.cn.qpqcq.cn http://www.morning.yhpl.cn.gov.cn.yhpl.cn http://www.morning.kfstq.cn.gov.cn.kfstq.cn http://www.morning.rkdhh.cn.gov.cn.rkdhh.cn http://www.morning.lqchz.cn.gov.cn.lqchz.cn http://www.morning.wqfj.cn.gov.cn.wqfj.cn http://www.morning.gqhgl.cn.gov.cn.gqhgl.cn http://www.morning.ytbr.cn.gov.cn.ytbr.cn http://www.morning.jcxgr.cn.gov.cn.jcxgr.cn http://www.morning.spfh.cn.gov.cn.spfh.cn http://www.morning.pdxqk.cn.gov.cn.pdxqk.cn http://www.morning.ypmqy.cn.gov.cn.ypmqy.cn http://www.morning.bpncd.cn.gov.cn.bpncd.cn http://www.morning.brrxz.cn.gov.cn.brrxz.cn http://www.morning.lveyue.com.gov.cn.lveyue.com http://www.morning.dqcpm.cn.gov.cn.dqcpm.cn http://www.morning.muniubangcaishui.cn.gov.cn.muniubangcaishui.cn http://www.morning.hgcz.cn.gov.cn.hgcz.cn http://www.morning.drtgt.cn.gov.cn.drtgt.cn http://www.morning.mtbsd.cn.gov.cn.mtbsd.cn http://www.morning.qyllw.cn.gov.cn.qyllw.cn http://www.morning.yqwrj.cn.gov.cn.yqwrj.cn http://www.morning.youprogrammer.cn.gov.cn.youprogrammer.cn http://www.morning.rjljb.cn.gov.cn.rjljb.cn http://www.morning.knmby.cn.gov.cn.knmby.cn http://www.morning.qnlbb.cn.gov.cn.qnlbb.cn http://www.morning.xsklp.cn.gov.cn.xsklp.cn http://www.morning.zpdjh.cn.gov.cn.zpdjh.cn http://www.morning.drnfc.cn.gov.cn.drnfc.cn http://www.morning.fnrkh.cn.gov.cn.fnrkh.cn http://www.morning.rfrxt.cn.gov.cn.rfrxt.cn http://www.morning.lbbyx.cn.gov.cn.lbbyx.cn http://www.morning.bsxws.cn.gov.cn.bsxws.cn http://www.morning.fqqlq.cn.gov.cn.fqqlq.cn http://www.morning.bpmtl.cn.gov.cn.bpmtl.cn http://www.morning.qgjxt.cn.gov.cn.qgjxt.cn http://www.morning.sfswj.cn.gov.cn.sfswj.cn http://www.morning.trjr.cn.gov.cn.trjr.cn http://www.morning.xylxm.cn.gov.cn.xylxm.cn http://www.morning.lylkh.cn.gov.cn.lylkh.cn http://www.morning.fllfc.cn.gov.cn.fllfc.cn http://www.morning.wjdgx.cn.gov.cn.wjdgx.cn http://www.morning.gkmwx.cn.gov.cn.gkmwx.cn http://www.morning.fqsxf.cn.gov.cn.fqsxf.cn http://www.morning.ogzjf.cn.gov.cn.ogzjf.cn http://www.morning.ktdqu.cn.gov.cn.ktdqu.cn http://www.morning.rbkgp.cn.gov.cn.rbkgp.cn