请看下面的代码:
我有facultyType类,并且主要创建了一个250个类的对象数组。
在通过Faculty(facultyType的数组)的打印方法中,但是在调用其程序时停止并且没有编译错误。
我想遍历打印方法中的所有facultyType并希望访问其成员函数。在Java中做同样的工作正常,但我怕为什么它不能在这里工作。

#include<iostream>
#include<string>
using namespace std;
class facultyType
{
private:
    string firstname;
    string lastname;
    string department;
    double salary;
    int serviceyears;
public:
    facultyType(){}
    void print(facultyType* faculty,int count);
    void setAll(facultyType faculty[],float percent,int count);
   //setter and getter
};
void facultyType::print(facultyType* faculty,int count)//need help here
{
    int i;
    for(i=0;i<count;i++)
    {
    //want to iterate all facultyType one by one
        facultyType f=faculty[i];//here the problem

        int serviceYear;
        serviceYear =f.getServiceYears();//not getting the exact values
        cout<<"service year "<<serviceYear<<endl;
        cout<<"dfhh"<<endl;
        if(serviceYear>=15) {
            cout<<f.getFirstName()<<"\n"<<f.getLastName()<<"\n"
                <<f.getDepartment();
            cout<<f.getSalary()<<"\n"<<f.getServiceYears()<<endl;
            cout<<"-------------------------------------------------\n";
        }
    }
}

int main()
{
    facultyType Faculty[250];
    facultyType f;
    int count=0;
    int status=0;
    string fname,lastname,depart;
    double sal;
    int serviceyears;
    while(status!=4)
    {
        cout<<"1. Add new Faculty member"<<endl;
        cout<<"2. increase all faculty member salary"<<endl;
        cout<<"3. Print Employee"<<endl;
        cout<<"4. Exit"<<endl;

        cin>>status;

        switch(status)
        {
            case 1:
            {
              cout<<"Enter first name : ";
                    cin>>fname;
                   //..other code for setter and getter values
                   Faculty[count]=newFaculty;
                   count++;
                    break;
                }

            case 3:{
                f.print(Faculty,count);//calling print method
                break;
            }
             case 4: break;
        }

    }

    return 0;
}

我知道它最愚蠢的问题,但是我是C++的新手。
请解释为什么它与Java不同。
提前致谢。

最佳答案

问题是您的“getter”函数实际上没有返回任何内容。在实现像这样的编辑facultyType::setServiceYears之前:

int facultyType::getServiceYears()
{
    serviceyears;
}

它应该已经(添加return关键字):
int facultyType::getServiceYears()
{
    return serviceyears;
}

启用警告后,编译器会捕获这种错误。

我在GNU / Linux上使用g++ test.cpp -ggdb -O0 -Wall -Wextra -pedantic对其进行了编译

07-24 09:15