无法初始化结构数组C ++

时间:2015-10-17 17:41:54

标签: c++ arrays structure

我是C ++的新手,正在研究课堂上的问题:

  

4。年降雨量报告

     

编写一个程序,显示一年中每个月的名称及其降雨量,   按降序排列从最高到最低。该程序应使用一个数组   结构,每个结构都有一个月的名称和降雨量。用一个   构造函数来设置月份名称。通过调用不同的方式使程序模块化   用于输入降雨量,对数据进行排序以及显示数据的功能。

这是我到目前为止的代码:

#include <iostream>
#include <string>
#include <iomanip>

using namespace std;

struct Month    //defining the structure
{
    string name;
    double rain;

Month(string name = "", double rain = 0){} //constructor
};

const int SIZE = 12; //12 months

//initializing each structure with the name
Month month[SIZE] = { Month("January", 0), Month("February",0), Month("March", 0),  
                      Month("April", 0), Month("May", 0), Month("June", 0),
                      Month("July", 0), Month("August", 0), Month("September", 0),
                      Month("October", 0), Month("November", 0), Month("December",0)};
void rainIn();

void sort();

void display();


int main() {

    rainIn();
    display();

    return 0;
}

void rainIn()
{
    for (int i = 0; i < SIZE; ++i)
    {
        cout << "Please enter the rainfall for " << month[i].name << ": ";
        cin >> month[i].rain;
    }
}

void sort() //will write later
{    }

void display()
{
    for (int i = 0; i < SIZE; ++i)
    {
        cout << month[i].name << month[i].rain << endl;
    }
}

我遇到的问题是,当我尝试调用它时,不会显示月份的名称。我是否错误地初始化了数组?

在阅读了评论和答案之后,我开发了一个“最小,完整,可验证”的例子:

#include <iostream>
#include <iomanip>
#include <string>

using namespace std;

struct Month
{
    string name;
    double rain;

    Month(string n = "", double r = 0) {}
};


Month month("January", 12);


int main() {
    cout << month.name << " had " << month.rain << " inches of rain. " << endl;
    return 0;
}

哪个仍然给了我同样的问题。我更改了构造函数(并添加了成员​​初始化列表),如下所示:

Month(string n = "", double r = 0) : name{n}, rain{r} {}

并且有效。

1 个答案:

答案 0 :(得分:4)

问题不是数组,而是构造函数实际上没有将成员变量设置为输入值。试试这个:

Month(string name = "", double rain = 0) : name{name}, rain{rain} {} //constructor

此语法称为&#34;成员初始化列表&#34; 。如果看起来应该是陌生的,请查看this