如何将成员函数纳入范围?

时间:2018-01-21 17:18:27

标签: c++ function class object scope

所以我调用的函数将输入作为限制i和对象数组h。

#include<iostream>
#include<vector>
using namespace std;
class hotel
{
private:
    string name,add;
    char grade;
    int charge,no;
public:
    void getdata();
    void putdata();
    void grade_print(int,hotel[]);
    void room_charge();
    void top2();
};
void hotel::getdata()
{
    cout<<"Add Name: ";
    getline(cin>>ws,name);
    cout<<"Add Addres: ";
    getline(cin>>ws,add);
    cout<<"Enter grade,room charge and no. of rooms: ";
    cin>>grade>>charge>>no;
}
void hotel::putdata()
{
    cout<<name<<endl<<add<<endl<<grade<<endl<<charge<<endl<<no;
}
void hotel::grade_print(int num,hotel h[])
{
    int i,j,k; char val;
    for(i=0;i<num;i++)
    {
        val=h[i].grade;
        for(j=0;j<num;j++)
        {
            if(h[j].grade==val)
            {
                cout<<h[j].grade<<endl;
                h[j].grade=' ';
            }
        }
    }

}
int main()
{
    std::vector <hotel> h(1);
    int i=0,j;
    cout<<"Want to add hotel? Press 1: ";
    cin>>j;
    while(j==1)
    {
        h[i].getdata();
        h.resize(2);
        i++;
        cout<<"Want to add more? Press 1 for yes, 0 for no: ";
        cin>>j;
    }
    grade_print(i,h);
}
这里的

错误表明grade_print超出了范围。等级也是私人成员,但由成员函数调用。那么为什么它表明不能称之为成绩。请告诉我为什么这样,我该怎么做才能解决它? Edit1:将函数声明为static void没有帮助,因为编译器显示的函数不能声明为static void。

D:\C++ Programs\testfile.cpp|30|error: cannot declare member function 'static void hotel::grade_print(int, hotel*)' to have static linkage [-fpermissive]|

2 个答案:

答案 0 :(得分:0)

grade_print(i, h);

应该在特定对象上调用非静态成员函数,如:

h[i].grade_print(i, h);

但是,在你的情况下,grade_print必须是静态的,所以它应该像这样声明:

static void grade_print(int,hotel []);

这个定义和正常一样。 此外,在使grade_print静态之后,你必须这样称呼它:

hotel::grade_print(i, h);

答案 1 :(得分:0)

据我所知,grade_print打印出有关作为参数传递的一组酒店的信息。如果您具有作用于某个类的组的函数,则该函数不应该是该类的成员。相反,它应该只是一个与任何类无关的函数。这也解决了您的范围问题,因为它具有全局范围。

如果我的论点看起来很奇怪,那么就这样想吧。假设我有一个名为number的类,以及一个名为print_nums的函数,它打印一个传递给它的numbers数组。我会使print_nums成为全局函数,还是成为number类的成员?第一个,对吗?第二个,虽然它会起作用,但实际上并没有意义。