错误C2664:show_info:无法从' char [20]'转换参数2到了#char;

时间:2014-10-26 20:15:07

标签: c++ c2664

我的结构很小:

struct price
{
    char name[20];
    char shop[20];
    int pr;
    price *next;
};

不起作用的功能:

void show_info(price *&head, char cur)
{
    bool found = 0;
    price *temp = new price;
    temp->name = cur;
    for (price *i=head; i!=NULL; i=i->next)
        if (temp == i)
        {
            cout<< i->shop << i->pr;
            found = 1;
        }
        if (!found)
            cout << "The the good with such name is not found";
        delete temp;
 }

主文件:

int main()
{
    price *price_list=NULL;
    char inf[20];
    list_fill(price_list);
    cout << "Info about goods: ";
    show_list(price_list); //there is no problem
    cout <<"Input goods name you want to know about: ";
    cin >> inf;
    cout << "The info about good " << inf << show_info(price_list,inf)<<endl;
    system("pause");
    return 0;
}

我需要修复我的功能才能正常工作。

如上所述,错误是c2664。

2 个答案:

答案 0 :(得分:1)

void show_list(price *&head, char cur)

应该是

void show_list(price *&head, char cur[] )

当您在inf

传递char [20]show_info(price_list,inf)

PS:可能也是其他问题

答案 1 :(得分:0)

按以下方式重写该功能

#include <cstring>

//...

void show_info( const price *head, const char *cur )
{
    bool found = false;
    const price *i = head;

    for ( ; i != NULL && !found; i = i->next )
    {
        found = strcmp( i->name, cur ) == 0;
    }

    if ( found )
    {
        cout<< i->shop << i->pr;
    }
    else
    {
        cout << "The the good with such name is not found";
    }
}