Logical operator overloading for C #

Source: Internet
Author: User
Not only C + +, but also in C # can be overloaded with operators. Such as:
Namespace Com.EVSoft.Math
{
public class Vector3:baseobject
{
...
......
..
public static Vector3 operator + (Vector3 lvector,double RHS);
public static Vector3 operator + (Vector3 Lvector,vector3 rvector);
public static BOOL operator = = (Vector3 Lvector,vector3 rvector);
...
......
}
}

The above code is a vector class that overloads operators and operators, overloading the operator or operator means changing the original meaning of the operator. For example
...
......
..
Vector3 vec=null;//assignment operator, whether it is the original meaning needs the developer to see its definition
if (vec==null)//logical operator, according to Vector3 's overloaded definition, here must be an error
{
Vec=new VECOTR3 ();
}

Logical operator overloading for C #

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.