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

cpp 面向对象初步探索

时间:2019-09-15 19:00:05      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:cout   +=   实现   定义   复数类   The   complex   private   headers   

需求

尝试定义一个complex(复数类)

简略实现

headers/complex.h

#ifndef __COMPLEX__
#define __COMPLEX__

class complex
{
public:
    complex(double re=0, double im=0):real(re), imag(im)
    { }

    complex& operator += (const complex &other) {
        this->real += other.real;
        this->imag += other.imag;
        return *this;
    }

    double get_real();
    double get_imag();

private:
    double real;
    double imag;
};

double complex::get_real() {
    return this->real;
}

double complex::get_imag() {
    return this->imag;
}
#endif // __COMPLEX__

main.cpp

#include <iostream>
#include "headers/complex.h"
using namespace std;

int main()
{
    complex c1(2, 3);
    complex c2(3, 4);
    c1 += c2;
    cout << c1.get_imag();
    cout << c1.get_real();
}

cpp 面向对象初步探索

标签:cout   +=   实现   定义   复数类   The   complex   private   headers   

原文地址:https://www.cnblogs.com/Draymonder/p/11523520.html

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