// demo1.cpp : 定义控制台应用程序的入口点。

//通过此例程了解重载

#include "stdafx.h"

#include <iostream>

using namespace std;

 

class CMath

{

public:

 CMath(float a):m_a(a)

 {

 }

 ~CMath()

 {

 }

 double Add(double a,double b);

 double Sub(double a,double b);

 double Mul(double a,double b);

 double Div(double a,double b);

 int Add(int a,int b)

 {

  return a+b;

 }

 int Sub(int a,int b)

 {

  return a-b;

 }

 int Mul(int a,int b)

 {

  return a*b;

 }

 int Div(int a,int b)

 {

  if (b!=0)

  {

   return a/b;

  }

  return 0;

 }

public:

 CMath operator +(CMath& mymath)

 {

  CMath result(0);

  result.m_a=m_a+mymath.m_a;

  return result;

 }

 CMath operator -(CMath& mymath)

 {

  CMath result(0);

  result.m_a=m_a-mymath.m_a;

  return result;

 }

 CMath operator *(CMath& mymath)

 {

  CMath result(0);

  result.m_a=m_a*mymath.m_a;

  return result;

 }

 CMath operator /(CMath& mymath)

 {

  if (mymath.m_a==0)

  {

   mymath.m_a=1;

  }

  CMath result(0);

  result.m_a=m_a/mymath.m_a;

  return result;

 }

 CMath operator ++()//前++

 {

  this->m_a+=1;

  return *this;

 }

 CMath operator ++(int)//后++,加上參数int,无意义

 {

  CMath *t=this;

  ++(t->m_a);

  return *t;

 }

 CMath operator --()//前--

 {

  this->m_a-=1;

  return *this;

 }

 CMath operator --(int)//后--,加上參数int,无意义

 {

  CMath *t=this;

  --(this->m_a);

  return *t;

 }

 CMath operator +=(CMath & mymath)

 {

  m_a+=mymath.m_a;

  return *this;

 }

  CMath operator -=(CMath & mymath)

 {

  m_a-=mymath.m_a;

  return *this;

 }

 bool operator ==(CMath &mymath)

 {

  return (m_a==mymath.m_a);

 }

 friend ostream& operator <<(ostream &os,CMath &t);//必须是友元

 

 

 friend iostream& operator >>(iostream &is,CMath &t);//必须是友元

 

 

 CMath operator ()(const CMath& t)

 {

  return CMath(this->m_a=t.m_a);

 }

 CMath& operator =(CMath &t)

 {

  this->m_a=t.m_a;

  return *this;

 }

private:

 float m_a;

};

 

ostream& operator <<(ostream &os,CMath &t)

{

 os<<t.m_a<<endl;

 return os;

}

iostream& operator >>(iostream &is,CMath &t)

{

 is>>t.m_a;

 return is;

}

 

double CMath::Add(double a,double b)

{

 return a+b;

}

 

double CMath::Sub(double a,double b)

{

 return a-b;

}

 

double CMath::Mul(double a,double b)

{

 return a*b;

}

 

double CMath::Div(double a,double b)

{

 if (b==0)

 {

  b=1;

 }

 return a/b;

}

int _tmain(int argc, _TCHAR* argv[])

{

 CMath mymath(4);

 cout<<mymath.Add(1.1,2.1)<<endl;//调用參数为double类型的Add函数

 cout<<mymath.Add(1,2)<<endl;//调用參数为int类型的Add函数

 cout<<mymath.Sub(1,2)<<endl;//

 cout<<mymath.Mul(1,2)<<endl;

 cout<<mymath.Div(1.3,2.3)<<endl;

 cout<<endl<<endl;

 cout<<"mymath:"<<mymath<<endl;

 mymath++;

 cout<<"mymath++:"<<mymath<<endl;

 mymath--;

 cout<<"mymath--:"<<mymath<<endl;

 cout<<"mymath+mymath:"<<mymath+mymath<<endl;

 cout<<"mymath*mymath:"<<mymath*mymath<<endl;

 cout<<"mymath/mymath:"<<mymath/mymath<<endl;

 CMath mymath1(20);

 mymath=mymath1;

 cout<<"mymath=mymath1:"<<mymath<<endl;

 if (mymath==mymath1)

 {

  cout<<"mymath==mymath1"<<endl;

 }

 mymath1+=mymath;

 cout<<"mymath1:"<<mymath1<<endl;

 mymath1-=mymath;

 cout<<"mymath1:"<<mymath1<<endl;

 mymath--;

 mymath1(mymath);

 cout<<"mymath1(mymath):"<<mymath1<<endl;

 

 return 0;

}

 

c++训练营--重载的更多相关文章

  1. .NET 基础 一步步 一幕幕[面向对象之方法、方法的重载、方法的重写、方法的递归]

    方法.方法的重载.方法的重写.方法的递归 方法: 将一堆代码进行重用的一种机制. 语法: [访问修饰符] 返回类型 <方法名>(参数列表){ 方法主体: } 返回值类型:如果不需要写返回值 ...

  2. PHP类和对象之重载

    PHP中的重载指的是动态的创建属性与方法,是通过魔术方法来实现的.属性的重载通过__set,__get,__isset,__unset来分别实现对不存在属性的赋值.读取.判断属性是否设置.销毁属性. ...

  3. C#基础回顾(二)—页面值传递、重载与重写、类与结构体、装箱与拆箱

    一.前言 -孤独的路上有梦想作伴,乘风破浪- 二.页面值传递 (1)C#各页面之间可以进行数据的交换和传递,页面之间可根据获取的数据,进行各自的操作(跳转.计算等操作).为了实现多种方式的数据传递,C ...

  4. new/delete重载

    在c++中,有时我们需要在运行阶段为一个变量分配未命名的内存,并使用指针来访问它,这里就可以用到new关键字.另外需要指出的是,new分配的内存块通常与常规变量分配的内存块不同,常规变量的值都储存在被 ...

  5. java重载与覆写

    很多同学对于overload和override傻傻分不清楚,建议不要死记硬背概念性的知识,要理解着去记忆. 先给出我的定义: overload(重载):在同一类或者有着继承关系的类中,一组名称相同,参 ...

  6. 【C++】多态性(函数重载与虚函数)

    多态性就是同一符号或名字在不同情况下具有不同解释的现象.多态性有两种表现形式: 编译时多态性:同一对象收到相同的消息却产生不同的函数调用,一般通过函数重载来实现,在编译时就实现了绑定,属于静态绑定. ...

  7. C++ 运算符重载时,将运算符两边对象交换问题.

    在C++进行运算符重载时, 一般来讲,运算符两边的对象的顺序是不能交换的. 比如下面的例子: #include <iostream> using namespace std; class ...

  8. C++重载new和delete运算符

    内存管理运算符 new.new[].delete 和 delete[] 也可以进行重载,其重载形式既可以是类的成员函数,也可以是全局函数.一般情况下,内建的内存管理运算符就够用了,只有在需要自己管理内 ...

  9. Java学习笔记之方法重载

    被重载的方法必须具有不同的参数列表.不能基于不同修饰符或返回值类型来重载方法. package welcome; public class TestMethodOverloading { public ...

随机推荐

  1. 《A Tour of PostgreSQL Internals》学习笔记——系统表和数据类型

    上周末学习了<A Tour of PostgreSQL Internals>的第一部分(View 1),今天我们继续打开书本,继续View 2 部分. View 2 Postgresql的 ...

  2. 微信公众平台开发localStorage数据总是被清空

    我把现在项目中的用户数据存储过程改成本地的,只用localStorage,但是随之而来很多问题,原因就是localStorage只有很短的有效时间,退出公众号,关闭微信都会清空.最不能容忍的是用户还在 ...

  3. selenium-grid2 远程并发控制用例执行

    今天闲来无事,随意看了一下selenium,突然注意到grid这个功能以前都是,在读有关selenium的文档时候知道有这么个grid远程控制的功能,但一直没有去试过.所以呢,今天就简单的做了这么个小 ...

  4. import Tkinter的时候报错

    在看到图形界面编程的时候,需要导入Tkinter模块,从而在解释器中进行import Tkinter,然后...报错如下: >>> from tkinter import * Tra ...

  5. 该不该将变量设为 null ?

    该不该将变量设为 null ? 对于引用类型的变量,在什么时候需要将其显式设为 null ,在什么时候不需要呢? 局部变量 对于局部变量,在方法结束的时候,变量就会失效,变量指向的对象引用也会减少一个 ...

  6. 数往知来 CSS<十二>

    div+css基础 一.外部样式<!--外部样式可以使网页与样式分离,分工处理 1.写网页,主要提供内容,一般都会有固定的结构,具有id等属性的标签包括特定的内容 2.根据结构写样式另存为css ...

  7. AI教程

    AI制作铅笔图案笔刷     在下面的步骤中,我们将学习如何在Adobe Illustrator中创建铅笔笔刷.首先你要建立一个简单的网格,以及如何使用基本的工具和形状创建主要的形状.然后,学习如何保 ...

  8. JavaEE5 Tutorial_Jsp,EL

      Jsp的各种元素在转化为servlet时处理是不一样的:指令,控制web容器如何处理页面脚本,被插入到生成的servlet里EL表达式,作为参数传递到解析器get/set Property,变成方 ...

  9. Eralng 小知识点

    文件属性 提取方法:Module:module_info/1 头文件 包含头文件 -include(FileName). %% FileName为绝对路径或相对路径 引入库中包含文件 -include ...

  10. 数据结构 -- 图的最短路径 Java版

    作者版权所有,转载请注明出处,多谢.http://www.cnblogs.com/Henvealf/p/5574455.html 上一篇介绍了有关图的表示和遍历实现.数据结构 -- 简单图的实现与遍历 ...