0

这让我彻底疯了。我已经尝试了我在其他帖子上找到的所有内容,但没有任何效果......这不应该这么复杂。

#include <iostream>
#include <iomanip>

using namespace std;

class SavingsAccount
{
private:
    float savingsBalance;   
    static float annualInterestRate;

public:

    static void modifyInterestRate(float interestRate)
    {
        annualInterestRate = interestRate;
    }


};

int main()
{
    SavingsAccount::modifyInterestRate(.03);

    cout << endl;
    system("pause");
    return 0;
}

得到一个未解决的外部错误。

4

0 回答 0