C++构造函数和析构函数的运行

2021/11/14 22:12:21

本文主要是介绍C++构造函数和析构函数的运行,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include<iostream>
using namespace std;
class Coordinate {
public:
    Coordinate()
    {
        times = 2;
        cout << "Coordinate construction1 called!" << endl;
    }
    Coordinate(int times1)
    {
        times = times1;
        cout << "Coordinate construction2 called!" << endl;
    }
    ~Coordinate()
    {
        cout << "Coordinate destruction called!" << endl;
    }
    void InputCoord()
    {
        for (int i = 0; i < times; i++)
        {
            cout << "Please Input x;" << endl;
            cin >> Coord[i][1];
            cout << "Please Input y:" << endl;
            cin >> Coord[i][2];
        }
    }
    void ShowCoord()
    {
        cout << "The coord is:" << endl;
        for (int i = 0; i < times; i++)
        {
            cout << "(" << Coord[i][1] << "," << Coord[i][2] << ")" << endl;
        }
    }
    void ShowAvgCoord()
    {
        float avgx = 0;
        float avgy = 0;
        for (int i = 0; i < times; i++)
        {
            avgx = avgx + Coord[i][1];
            avgy = avgy + Coord[i][2];
        }avgx = avgx / times;
        avgy = avgy / times;
        cout << "The AVG coord is:" << endl;
        cout << "(" << avgx << "," << avgy << ")" << endl;
    }
private:
    float Coord[100][100];
    int times;
};
int main()
{   Coordinate y(5);
    y.InputCoord();
    y.ShowCoord();
    y.ShowAvgCoord();
    return 0;
}



这篇关于C++构造函数和析构函数的运行的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程