- D 编程基础
- D 编程 - 首页
- D 编程 - 概述
- D 编程 - 环境
- D 编程 - 基本语法
- D 编程 - 变量
- D 编程 - 数据类型
- D 编程 - 枚举
- D 编程 - 字面量
- D 编程 - 运算符
- D 编程 - 循环
- D 编程 - 条件语句
- D 编程 - 函数
- D 编程 - 字符
- D 编程 - 字符串
- D 编程 - 数组
- D 编程 - 关联数组
- D 编程 - 指针
- D 编程 - 元组
- D 编程 - 结构体
- D 编程 - 联合体
- D 编程 - 范围
- D 编程 - 别名
- D 编程 - 混入
- D 编程 - 模块
- D 编程 - 模板
- D 编程 - 不可变
- D 编程 - 文件 I/O
- D 编程 - 并发
- D 编程 - 异常处理
- D 编程 - 合同
- D - 条件编译
- D 编程 - 面向对象
- D 编程 - 类与对象
- D 编程 - 继承
- D 编程 - 重载
- D 编程 - 封装
- D 编程 - 接口
- D 编程 - 抽象类
- D 编程 - 有用资源
- D 编程 - 快速指南
- D 编程 - 有用资源
- D 编程 - 讨论
D 编程 - 重载
D 允许您在同一个作用域中为函数名或运算符指定多个定义,这分别称为函数重载和运算符重载。
重载声明是指在同一作用域中与之前声明具有相同名称的声明,但这两个声明具有不同的参数,并且显然具有不同的定义(实现)。
当您调用重载函数或运算符时,编译器会通过比较您用来调用函数或运算符的参数类型与定义中指定的参数类型来确定最合适的定义。选择最合适的重载函数或运算符的过程称为重载解析。
函数重载
您可以在同一个作用域中为同一个函数名定义多个函数。函数的定义必须通过参数列表中类型和/或参数的数量来区分。您不能重载仅返回值类型不同的函数声明。
示例
以下示例使用相同的函数print()来打印不同的数据类型:
import std.stdio; import std.string; class printData { public: void print(int i) { writeln("Printing int: ",i); } void print(double f) { writeln("Printing float: ",f ); } void print(string s) { writeln("Printing string: ",s); } }; void main() { printData pd = new printData(); // Call print to print integer pd.print(5); // Call print to print float pd.print(500.263); // Call print to print character pd.print("Hello D"); }
当以上代码编译并执行时,会产生以下结果:
Printing int: 5 Printing float: 500.263 Printing string: Hello D
运算符重载
您可以重新定义或重载 D 中大多数可用的内置运算符。因此,程序员也可以将运算符与用户定义的类型一起使用。
可以使用字符串 op 后跟 Add、Sub 等来重载运算符,具体取决于要重载的运算符。我们可以重载运算符 + 来添加两个盒子,如下所示。
Box opAdd(Box b) { Box box = new Box(); box.length = this.length + b.length; box.breadth = this.breadth + b.breadth; box.height = this.height + b.height; return box; }
以下示例展示了使用成员函数进行运算符重载的概念。这里将一个对象作为参数传递,其属性使用此对象访问。调用此运算符的对象可以使用this运算符访问,如下所述:
import std.stdio; class Box { public: double getVolume() { return length * breadth * height; } void setLength( double len ) { length = len; } void setBreadth( double bre ) { breadth = bre; } void setHeight( double hei ) { height = hei; } Box opAdd(Box b) { Box box = new Box(); box.length = this.length + b.length; box.breadth = this.breadth + b.breadth; box.height = this.height + b.height; return box; } private: double length; // Length of a box double breadth; // Breadth of a box double height; // Height of a box }; // Main function for the program void main( ) { Box box1 = new Box(); // Declare box1 of type Box Box box2 = new Box(); // Declare box2 of type Box Box box3 = new Box(); // Declare box3 of type Box double volume = 0.0; // Store the volume of a box here // box 1 specification box1.setLength(6.0); box1.setBreadth(7.0); box1.setHeight(5.0); // box 2 specification box2.setLength(12.0); box2.setBreadth(13.0); box2.setHeight(10.0); // volume of box 1 volume = box1.getVolume(); writeln("Volume of Box1 : ", volume); // volume of box 2 volume = box2.getVolume(); writeln("Volume of Box2 : ", volume); // Add two object as follows: box3 = box1 + box2; // volume of box 3 volume = box3.getVolume(); writeln("Volume of Box3 : ", volume); }
当以上代码编译并执行时,会产生以下结果:
Volume of Box1 : 210 Volume of Box2 : 1560 Volume of Box3 : 5400
运算符重载类型
基本上,运算符重载有三种类型,如下所示。
广告