首页 > 编程 > C# > 正文

C#虚函数用法实例分析

2019-10-29 21:42:05
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C#虚函数用法,实例分析了C#中虚函数的功能与基本使用技巧,需要的朋友可以参考下

本文实例讲述了C#虚函数用法。分享给大家供大家参考。具体如下:

 

 
  1. using System; 
  2. namespace Test2 { 
  3. class Plane { 
  4. public double TopSpeed() { 
  5. return 300.0D; 
  6. class Jet : Plane { 
  7. public double TopSpeed() { 
  8. return 900.0D; 
  9. class Airport { 
  10. static void Main(string[] args) { 
  11. Plane plane = new Jet(); 
  12. Console.WriteLine("planes top speed: {0}",plane.TopSpeed()); 
  13. Console.ReadLine(); 

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表