码迷,mamicode.com
首页 > 其他好文 > 详细

结构体重载运算符

时间:2020-02-29 01:03:21      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:iostream   isp   end   out   pre   type   结构体   struct   turn   

#include "stdafx.h"
#include <iostream>
using namespace std;
 
template <typename T>
void DisplayValue(T value)
{
    cout<<value<<endl;
}
 
struct Currency 
{
    int Dollar;
    int Cents;
     
    Currency& operator=(Currency& value)
    {
        Dollar = value.Dollar;
        Cents = value.Cents;
        return *this;
    }
    Currency& operator+(Currency& value)
    {
        Dollar += value.Dollar;
        Cents += value.Cents;
        return *this;
    }
    Currency &operator-(Currency& value)
    {
        Dollar = Dollar - value.Dollar;
        Cents = Cents - value.Cents;
        return *this;
    }
    Currency& operator*(Currency& value)
    {
        Dollar *= value.Dollar;
        Cents *= value.Cents;
        return *this;
    }
    friend ostream &operator<<(ostream &out,Currency value);
};
 
ostream& operator<<(ostream &out,Currency value)
{
    out<<"The dollar = "<<value.Dollar<<" and The Cents = "<<value.Cents<<endl;
    return out;
}
int _tmain(int argc, _TCHAR* argv[])
{
 
    Currency c1;
    c1.Dollar = 10;
    c1.Cents = 5;
    DisplayValue(c1);
    Currency c2,c3;
    c2 = c1;
    c3= c1+c2;
    DisplayValue(c3);
    system("pause");
    return 0;
}

 

结构体重载运算符

标签:iostream   isp   end   out   pre   type   结构体   struct   turn   

原文地址:https://www.cnblogs.com/lovebay/p/12380974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!