これは私を完全に狂わせています。ここの他の投稿で見つけたすべてを試しましたが、何も機能しません...これはそれほど複雑ではありません。
#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;
}
未解決の外部エラーを取得しています。