VisualBuilder
  Home > Csharp > Tutorials > Operator Overloading in C sharp -2 - C# Tutorial
Tell a friend
Link to us
Total Members
      Members: 84606
     
Sitemap Forum Chat
Home
C# Tutorial Home
1 . Introduction to C sharp
2 . Control Statement: Selection Statement in C sharp
3 . Control Statements – Loops Statement
4 . Methods
5 . Namespaces
6 . Introduction to Classes:
7 . Inheritance:
8 . Polymorphism
9 . Properties
10 . Indexers
11 . Structs
12 . Interfaces
13 . Delegates:
14 . Exception Handling:
15 . Attributes
16 . Enums
17 . Encapsulation
18 . Parameter Passing in C sharp
19 . Method Overloading
20 . Database Interaction Using C sharp
21 . Operator Overloading in C sharp -1
22 . Operator Overloading in C sharp -2
23 . Operator Overloading in C sharp -2
24 . Sockets
25 . DNS [Domain Name System]
26 . Working with Files
27 . Generating Help File in C sharp
28 . Code Access Security
29 . Multi-Threading
30 . Globalization and Localization -1
31 . Working with Registry in C sharp
32 . Globalization and Localization -2
33 . Windows Service
34 . Web Service
35 . Consuming Web Services
36 . Creating Proxy Object of Web Service
37 . Creating an XML document
38 . Reading XML document in C sharp
39 . Using XMLWriter class to Write XML document in C sharp
40 . Assembly Information : Getting Permission set of the assembly
41 . Creating your own Permission Set
42 . Using C sharp Socket
 
Csharp Group Home
Csharp Discussion (7)
Csharp Members (2250)
Csharp Resources
Csharp Source Code (35)
Csharp Articles (0)
Csharp Blogs
Csharp Jobs
Csharp Components (5)
Csharp Books
Csharp Websites (25)
Csharp News (17)
Csharp Q & A (4)
- Csharp Ask Question
- Csharp Questions
- Csharp Unanswered Questions
 
GROUPS
.NET
ASP.NET
.NET
C#
ASP
Visual Basic
Java
Java
JSP
EJB
Other
Delphi
C++
Ajax
UML
JavaScript
PHP
Web Design
Web Hosting
SQL Server
Oracle
Project Management
More Groups

 
LEARNING CENTER
TUTORIALS
.NET
.NET Tutorial
ASP Tutorial
ASP.NET Database Tutorial
ASP.NET Development Tips
ASP.Net Security,Internationalisation And Deployment
ASP.NET Server Controls Tips
ASP.NET Tutorial
C Sharp Tutorial
Web Development
Flex Tutorial
HTML Tutorial
Learn AJAX Tutorial
PHP Tutorial
Software Development
Database Tutorial
SQL Tutorial
UML Tutorial
Java
Ant Tutorial
EJB 3 Tutorial
Hibernate Tutorial
Java Tutorial
Java Web Component Tutorial
Java XML Tutorial
JDBC Tutorial
JDK1.5 Tutorial
JSF Tutorial
JSP And J2EE Design Tutorial
JSP Tutorial
Spring Tutorial
Struts Tutorial

RESOURCES
Q & A (432 )
Source Code (3217 )
Articles (11 )
Components (1589 )
News (880 )
Websites (1207 )

SUBMISSIONS
Submit Article
Submit Website
Submit News
Submit Source Code
Submit Component

COMMUNITY
Members Directory
Discussion Forum
Chat

SITE
About Us
Sitemap
Search
Contact Us
Link To Us
Feedback
Tell a Friend
Partners
Advertise


Csharp Tutorial
 Operator Overloading in C sharp -2
  << Prev: Operator Overloading in C sharp -1 Next: Operator Overloading in C sharp -2 >>

Overloading Boolean Operator:


If you need to overload the true or false operators in your class or structure, define a method with the following characteristics:



  • A return type of bool

  • The keyword operator

  • The operator being overloaded

  • A parameter list specifying a single parameter of the type of class or structure containing the overloaded operator method


Overloading Conversion Operator:


You can also write operator overload methods that convert one type into another type. If you need to define a new conversion operator in your class or structure, define a method with the following characteristics:



  • The keyword implicit if the conversion is to be treated as an implicit conversion, or the keyword explicit if the conversion is to be treated as an explicit conversion

  • The keyword operator

  • A type specifying the target type of the conversion

  • A parameter list specifying the source type of the conversion


 


Overloading Binary Operators:


The operators that fall under this category are : Addition, Subtraction, Division, Multiplication, Remainder, AND, OR, Exclusive OR, Shift left, Shift Right, Equality, Inequality, Greater than, less than. If you need to overload any of the binary operators in your class or structure, define a method with the following characteristics:



  • A return type of your choice

  • The keyword operator

  • The operator being overloaded

  • A parameter list specifying two parameters, at least one of which must be of the type of class or structure containing the overloaded operator method



Example: Demonstrate Boolean Overloading, Conversion Overloading and Binary Operators Overloading


 


ClsOverloadingBooleanOpertors.cs


 


using System;


using System.Collections.Generic;


using System.Text;


 


namespace _CSharpApplication


{


  class ClsOverloadingBooleanOpertors


    {


    public int X;


    public int Y;


 


    public static bool operator true ( ClsOverloadingBooleanOpertors RValue)


        {


    if ((RValue.X == 0) && (RValue.Y == 0))


        return true ;


    return false ;


        }


    public static bool operator false ( ClsOverloadingBooleanOpertors RValue)


        {


    if ((RValue.X == 0) && (RValue.Y == 0))


        return false ;


    return true ;


        }


    }


}


 


ClsOverloadingConversion.cs


 


using System;


using System.Collections.Generic;


using System.Text;


 


namespace _CSharpApplication


{


  class ClsOverloadingConversion


    {


    public int X;


    public int Y;


    public static implicit operator double ( ClsOverloadingConversion RValue)


        {


    double total_Distance;


    double total_Sum;


        total_Sum = (RValue.X * RValue.X) + (RValue.Y * RValue.Y);


        total_Distance = System. Math .Sqrt(total_Sum);


    return total_Distance;


        }


    }


}


 


ClsOverloadingEqualityInequality.cs


 


using System;


using System.Collections.Generic;


using System.Text;


 


namespace _CSharpApplication


{


  class ClsOverloadingEqualityInequality


    {


    public int X;


    public int Y;


        public static bool operator ==( ClsOverloadingEqualityInequality objFirst,         ClsOverloadingEqualityInequality objSecond)


        {


    if (objFirst.X != objSecond.X)


        return false ;


    if (objFirst.Y != objSecond.Y)


        return false ;


    return true ;


        }


    public override bool Equals( object o)


        {


        return true ;


        }


    public override int GetHashCode()


        {


        return 0;


        }


    public static bool operator !=( ClsOverloadingEqualityInequality objFirst,     ClsOverloadingEqualityInequality objSecond)


        {


    if (objFirst.X != objSecond.X)


        return true ;


    if (objFirst.Y != objSecond.Y)


        return true ;


    return false ;


        }


    }


}


 


Form3.cs


 


using System;


using System.Collections.Generic;


using System.ComponentModel;


using System.Data;


using System.Drawing;


using System.Text;


using System.Windows.Forms;


 


namespace _CSharpApplication


{


  public partial class Form3 : Form


    {


    public Form3()


        {


    InitializeComponent();


        }


 


    private void button1_Click( object sender, EventArgs e)


        { //Overloading True and False operator


            ClsOverloadingBooleanOpertors objBoolean = new ClsOverloadingBooleanOpertors ();


      objBoolean.X = 20;


      objBoolean.Y = 30;


      if (objBoolean)


        MessageBox.Show( "The point is at the origin." );


      else


        MessageBox.Show( "The point is not at the origin." );


        }


 


    private void button2_Click( object sender, EventArgs e)


        { //Overloadable Conversion Operator


            double conDistance;


            ClsOverloadingConversion objConversion = new ClsOverloadingConversion ();


      objConversion.X = 100;


      objConversion.Y = 200;


            conDistance = objConversion;


      MessageBox.Show(conDistance.ToString());


        }


 


    private void button3_Click( object sender, EventArgs e)


        { //Overloading Equality/Inequality Operator


            ClsOverloadingEqualityInequality MyFirstPoint = new ClsOverloadingEqualityInequality ();


            ClsOverloadingEqualityInequality MySecondPoint = new ClsOverloadingEqualityInequality ();


            ClsOverloadingEqualityInequality MyThirdPoint = new ClsOverloadingEqualityInequality ();


      MyFirstPoint.X = 100;


      MyFirstPoint.Y = 200;


      MySecondPoint.X = 500;


      MySecondPoint.Y = 750;


      MyThirdPoint.X = 100;


      MyThirdPoint.Y = 200;


      if (MyFirstPoint == MySecondPoint)


        MessageBox.Show( "MyFirstPoint and MySecondPoint are at the same coordinates." );


      else


        MessageBox.Show( "MyFirstPoint and MySecondPoint are not at the same coordinates." );


      if (MyFirstPoint == MyThirdPoint)


        MessageBox.Show( "MyFirstPoint and MyThirdPoint are at the same coordinates." );


      else


        MessageBox.Show( "MyFirstPoint and MyThirdPoint are not at the same coordinates." );


 


        }


    }


}


 


Output:


 




 


Clicking on Overloading True/False Operator




Clicking on Overloading Conversion Operator




 


Clicking on Overloading Equality/Inequality Operator




 




 


 


  << Prev: Operator Overloading in C sharp -1 Next: Operator Overloading in C sharp -2 >>
Csharp Tutorial Home
Give feedback and win a prize.

 
   Printer Friendly
   Email to a friend
   Add to my Favourites    
  Download PDF version
   Report Bad Submissions
   Submit Feedback
 
  Delicious   Digg   Technorati   Blink   Furl   Reddit   Newsvine   Google Click each image to add
this page to each site.
 
 
Welcome Guest Signup
MEMBER'S PANEL
EMAIL
PASSWORD
Forgot your password?
New User? Click Here!
 
Resend Activation Email!
 
SEARCH
 
 
LINKS
MSN
Video Surveillance
Exchange Hosting
Gift to Pakistan
 
ADVERTISEMENT
 
PARTNER LIST

More
 
 
 

Home | Login | About Us | Contact Us | Privacy Policy | Advertising