Example Analysis of Overloading Usage of C Operator

  • 2021-07-09 09:06:04
  • OfStack

This article illustrates the use of C # operator overloading. Share it for your reference. The specific analysis is as follows:


public class Plane {
   public virtual double TopSpeed() { return 300.0D;}
   public static bool operator>(Plane one, Plane two) {  
     return one.TopSpeed() > two.TopSpeed();
   }
   public static bool operator<(Plane one, Plane two) {  
     return one.TopSpeed() < two.TopSpeed();
   }
  }
  class Jet : Plane {
   public override double TopSpeed() { return 900.0D; }
   public override string ToString() { return "I'm a Jet"; }
  }
   class Airport {
   [STAThread]
   static void Main(string[] args) {
     Plane plane = new Jet();
     Console.WriteLine("plane's top speed: {0}",plane.TopSpeed());
     Jet jet = new Jet();
     Console.WriteLine("jet's top speed: {0}",jet.TopSpeed());
     Console.WriteLine("Plane > Jet = {0}", plane > jet);
     Console.ReadLine();
   }
  }

I hope this article is helpful to everyone's C # programming.


Related articles: