using namespace std;
class Student{
public:
Student(int test)
{
if(test == key)
{cout << "A student is being verified with a correct key: "<< test << endl;}
}
private:
int key= 705;
};
int main()
{
int testkey;
cout << "Enter key for Bob: ";
cin >> testkey;
Student bob(testkey);
}
だから私はそれを実行しようとしましたが、C ++はキーに値を割り当てることができないと言っています「キーを静的にするエラー」。私はそれが何を意味するのか分かりません:(