在函数中使用数组

时间:2013-12-03 04:05:10

标签: c++ arrays function

我遇到函数找到收藏夹函数中的条目总数的部分有问题。编译器说我试图将int转换为int *。我似乎无法理解为什么它认为我试图将数组转换为整数。

#include <iostream>
using namespace std;

enum DrinksType {COKE, PEPSI, SPRITE, DR_PEPPER};

int favorites(int sum[]);
void Prompt();

int main ()
{
int sums[4];
int number;
int total;

DrinksType index;
for (index = COKE; index <= DR_PEPPER; index = DrinksType(index+1))
sums[index] = 0;
Prompt();
cin >> number;
while (number != 4)
{
switch(number)
{
    case 0:
        sums[0]++;
        break;
    case 1:
        sums[1]++;
        break;
    case 2:
        sums[2]++;
        break;
    case 3:
        sums[3]++;
        break;
}

Prompt();
cin >> number;
}

total = favorites (sums[4]);

cout << "Coke: " << sums[0] << endl;
cout << "Pepsi: " << sums[1] << endl;
cout << "Sprite: " << sums[2] << endl;
cout << "Dr. Pepper: " << sums[3] << endl;
cout << "The number of responses is: " << total;
return 0;
}
//*******************************************************
void Prompt()
{
cout << "Enter a 0 if your favorite is a Coke." << endl;
cout << "Enter a 1 if your favorite is a Pepsi." << endl;
cout << "Enter a 2 if your favorite is a Sprite." << endl;
cout << "Enter a 3 if your favorite is a Dr. Pepper." << endl;
cout << "Enter a 4 if you wish to quit the survey." << endl;
}

int favorites (int sum[])
{
    int total = 0;
        for (int i = 0; i<4; i++)
            total = total + sum[i];
    return total;
}

3 个答案:

答案 0 :(得分:3)

将数组传递给函数时,不需要使用[]运算符:

total = favorites(sums); // not sums[4]

方括号从整数数组中取一个整数,因此编译器抱怨。

注意:这段代码

switch(number)
{
case 0:
    sums[0]++;
    break;
case 1:
    sums[1]++;
    break;
case 2:
    sums[2]++;
    break;
case 3:
    sums[3]++;
    break;
}

可以缩短为一行:

sums[number]++; // Yes, that's it :)

最后,您应该在进入此循环之前检查用户输入:

while (number != 4) {
    ...
}

因为如果恶意最终用户输入5,则此循环不会停止。

答案 1 :(得分:1)

您正在呼叫favourites(sum[4])。那是错误。它只使用索引4发送sum数组中的值。但是因为你需要整个数组,所以正确的语句将是,

total = favourites(sum);

这将为您提供答案

答案 2 :(得分:0)

我建议严格使用数组作为输入参数,如下所示 在const之前添加或删除int取决于您的需要。

template <size_t size>
void Function1(const int (&input)[size])
{
    for (int i = 0; i < size; ++i)
    {
        std::cout << input[i] << std::endl;
    }
}

如果您的数组是固定大小,那么您可以删除template