在 C# 中,什么是早期绑定?


在编译期间将函数与对象链接的机制称为早期绑定。它也称为静态绑定。C# 提供了两种实现静态多态性的技术,即函数重载和运算符重载。

让我们通过一个示例来了解函数重载 -

您可以在同范围内为相同函数名称指定多个定义。函数的定义必须通过参数列表中参数的类型和/或数量有所不同。您不能重载仅返回类型不同的函数声明。

以下是一个完整的例子 -

示例

 在线演示

using System;

namespace PolymorphismApplication {
   class Printdata {
      void print(int i) {
         Console.WriteLine("Printing int: {0}", i );
      }

      void print(double f) {
         Console.WriteLine("Printing float: {0}" , f);
      }

      void print(string s) {
         Console.WriteLine("Printing string: {0}", s);
      }

      static void Main(string[] args) {
         Printdata p = new Printdata();

         // Call print to print integer
         p.print(5);

         // Call print to print float
         p.print(500.263);

         // Call print to print string
         p.print("Hello C++");
         Console.ReadKey();
      }
   }
}

输出

Printing int: 5
Printing float: 500.263
Printing string: Hello C++

更新于: 20-6-2020

920 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告