【C++ Primier】编程练习11.1 构造函数的调用笔记

//vector.h

#ifndef VECTOR_H_
#define VECTOR_H_
#include<iostream>
namespace VECTOR
{

    class Vector
    {    
    public:
        enum Mode {RECT, POL};

    private:
        double x;        //horizental move
        double y;        //vertical move
        double mag;        //length of vector
        double ang;            //direction of vector in degrees
        Mode mode;        //RECT or POL
        //private methods for setting values
        void set_mag();   //留出的 change Vector private 变量的接口
        void set_ang();
        void set_x();
        void set_y();

        
    public:
        Vector();
        Vector(double n1,double n2, Mode form = RECT);
        void reset(double n1,double n2,Mode form = RECT);
        ~Vector();
        double xval() const { return x; }
        double yval() const {return y ; }
        double mgval() const { return mag; }
        double angval() const { return ang; }
        void polar_mode();
        void rect_mode();
        //operator overloading
        Vector operator+(const Vector & b)const;
        Vector operator - (const Vector & b)const;
        Vector operator -()const;
        Vector operator * (double n)const;
        //friends
        friend Vector operator*(double n, const Vector & a);
        friend std::ostream &
            operator<<(std::ostream & os, const Vector &v);

    protected:

};

}//end namespace VECTOR
#endif // !VECTOR_H

_

//vector.cpp

#include <cmath>
#include "vector.h"
using std::sqrt;
using std::sin;
using std::cos;
using std::atan;
using std::atan2;
using std::cout;

namespace VECTOR
{
    const double Rad_2_Deg = 45.0 / atan(1.00);
    void Vector::set_mag()
    {
        mag = sqrt(x*x + y*y);
    }

    void Vector::set_ang()
    {
        if (x == 0.0 && y == 0.0){
            ang = 0.0;
        }
        else
        {
            ang = atan2(y, x);
        }

    }

    void Vector::set_x()
    {
        x = mag * cos(ang);
    }
    void Vector::set_y()
    {
        y = mag * sin(ang);
    }

    Vector::Vector()
    {
        x = y = mag = ang = 0;
        mode = RECT;
    }


    Vector::~Vector()
    {
    }

    Vector::Vector(double n1, double n2, Mode form )
    {
        mode = form;
        if (form == RECT)
        {
            x = n1;
            y = n2;
            set_mag();
            set_ang();
        }
        else if(form == POL)
        {
            mag = n1;
            ang = n2;
            set_x();
            set_y();
        }
        else
        {
            cout << "Incorrect 3rd argyment to Vector()---";
            cout << "vector set to 0\n";
            x = y = mag = ang = 0;
            mode = RECT;

        }
    
    }
    void Vector::reset(double n1, double n2, Mode form)
    {
        mode = form;
        if (form == RECT)
        {
            x = n1;
            y = n2;
            set_mag();
            set_ang();
        }
        else if (form == POL)
        {
            mag = n1;
            ang = n2;
            set_x();
            set_y();
        }
        else
        {
            cout << "Incorrect 3rd argyment to Vector()---";
            cout << "vector set to 0\n";
            x = y = mag = ang = 0;
            mode = RECT;

        }
    
    }

    void Vector::polar_mode()
    {
        mode = POL;
    }

    void Vector::rect_mode()
    {
        mode = RECT;
    }

    //operator overloading
    Vector Vector::operator+(const Vector & b)const
    {
        Vector temp((this->x) + b.x, (this->y) + b.y);

        //Vector temp;                //如果使用默认构造函数,那么造成的影响就是没有进行reset,所以mag,ang 一直是0
        //temp.x = (this->x) + b.x;
        //temp.y = (this->y) + b.y;

        return temp;
    }

    Vector Vector::operator - (const Vector & b)const
    {

        Vector temp((this->x) - b.x, (this->y) - b.y);
        /*Vector temp;
        temp.x = (this->x) - b.x;
        temp.y = (this->y) - b.y;*/

        return temp;
    }

    Vector Vector::operator -()const
    {
        Vector temp(-(this->x),  -(this->y));
        //Vector temp;
        //temp.x = -(this->x);
        //temp.y = -(this->y);

        return temp;
    }

    Vector Vector::operator * (double n)const
    {
        Vector temp((this->x) * n, (this->y) * n);
      /*
        Vector temp;
        temp.x = (this->x) * n;
        temp.y = (this->y) * n;
        */ 

//如果是调用默认构造函数,不能起到构造的目的,所以应该使用带参数列表的构造函数
        return temp;
    }

    Vector operator*(double n, const Vector & a)
    {
        return a * n;
    }

    std::ostream &
        operator<<(std::ostream & os, const Vector &v)
    {
        if (v.mode == Vector::RECT)
        {
            os << "(x,y) =  (" <<v.x<<", "<<v.y<<")  " ;
        }
        else if(v.mode == Vector::POL)
        {
            os << "(m, a)= (" << v.mag << ", " << v.ang * Rad_2_Deg << ")";
        }
        else
        {
            os << "Vector object mode is invalid !";
        }
        return os;

    }

}//end namespace VECTOR
 

//main函数

//randwork.cpp

#include<iostream>
#include <fstream>
#include <cstdlib>
#include<cstdlib>
#include <ctime>
#include "vector.h"


int main()
{
    using namespace std;
    using VECTOR::Vector;
    srand(time (0));
    double direction;
    Vector step;
    Vector result(0.0 , 0.0);
    unsigned long steps = 0;
    double target;                                                                                                                                                                                                                                                                                                                                                                 
    double dstep;
    ofstream fout;
    fout.open("thisworkDairy.txt");
    if (!fout.is_open())
    {
        cerr << "can't open this outwork file" << endl;
        exit(EXIT_FAILURE);
    }

    cout << "Enter target distance  (q to quit)  :";
    while (cin>> target)
    {

        cout << "Enter step length:   ";
        if (!(cin >> dstep))
            break;
        fout << "Target distance:  " << target
            <<", Step Size:  "<<dstep<<endl;
        fout << steps << ":  " << result << endl;

        while (result.mgval()<target)
        {
            direction = rand() % 360;
            step.reset(dstep,direction,Vector::POL);
            result = result + step;
            steps += 1;
            fout << steps << ":  " << result << endl;
        }


        cout << "After " << steps << "steps, the subject   "
            << "has the following location: \n";
        cout << result << endl;
        fout<< "After " << steps << "steps, the subject   "
            << "has the following location: \n";
        fout<< result << endl;
        result.polar_mode();
        cout << "or\n " << result << endl;
        cout << "Average outward distance per step = "
            << result.mgval() / steps << endl;
        fout << "or\n" << result << endl;
        fout << "Average outward distance per step = "
            << result.mgval() / steps << endl;
        steps = 0;
        result.reset(0.0, 0.0);
        cout << "Enter target distance (q to quit) ";


    }
    cout << "Bye !\n";
    cin.clear();
    while (cin.get() != '\n')
        continue;
    return 0;
}

 

总计:主要是更改了一下之前的原有调用使用的构造函数,没有看仔细,调用了无参的构造函数,而不是我们希望的有参构造函数。最后单步调试才看出了问题所在,长记性了。

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值