首页 > 解决方案 > C++ 问题:[Error] 语句无法解析重载函数 x2 的地址

问题描述

我在这里完全是个菜鸟,需要帮助。希望比我有经验的小伙伴们帮帮我。

非常感谢任何输入。

由于代码太长,因此代码的运行方式如下:

#include <iostream>
    
    using namespace std;
    
    class Payslip
    {
    
    string name, pay_grade;
    float salary, oth, otp, gross, net, tax, sss, pagibig, philhealth;
    
    public: 
    void payslipdetails()
    {
    
    // Extremely long, but this part of the code would allow me to allow user to input their names, their base salary, and overtime hours.
    
    sss = 500;
    pagibig = 200;
    philhealth = 100;
    otp = oth * (salary*0.01);
    gross = salary + otp;
    net = gross - (tax + sss + pagibig + philhealth);
    
    // then a series of if/else if condition if salary is greater/less than or equals to, and we divide the said salaries into pay grade A or B. 

/* Example: 
                if (salary >= 10000 && salary <= 19999)
                {
                    // Pay grade A
                    if (salary >= 10000 && salary <= 14999) 
                    {
                    pay_grade = "A";
                    }
                    
                        // Pay grade B
                        else if (salary >= 15000 && salary <= 19999)
                        {
                            pay_grade = "B";
                        }
                    tax = gross * 0.10;
                }*/
                
    
    }
    }
    
    void display_details()
    {
    cout<<"\n Employee Name              : " << name;
                    cout<<"\n Basic Salary               : " << salary;
                    cout<<"\n Pay Grade                  : " << pay_grade;
                    cout<<"\n No. of OT hours            : " << oth;
                    cout<<"\n OT Pay                     : " << otp;
                    cout<<"\n Gross Pay                  : " << gross;
                    cout<<"\n Withholding Tax            : " << tax;
                    cout<<"\n Net Pay                    : " << net;
            }
    };
    int main()
    {
            Payslip d;
            d.payslipdetails;
            d.display_details;
            return 0;
    }

d.payslipdetails 和 d.displaydetails 有错误。我希望这比我上一篇文章更清楚!

错误是:[Error] 语句无法解析重载函数的地址

我不知道该怎么做...

标签: c++

解决方案


您是否可能尝试在对象上调用方法d?然后,您至少需要添加括号。对于每个函数调用:

    d.payslipdetails();

推荐阅读