1. ホーム
  2. c++

[解決済み】エラー。ISO C++は非恒等式静的メンバのクラス内初期化を禁じている

2022-02-14 16:13:02

質問

これはヘッダーファイルであるemployee.h

#ifndef EMPLOYEE_H
#define EMPLOYEE_H

#include <iostream>
#include <string>
using namespace std;

class Employee {
public:
    Employee(const string &first, const string &last) 

オーバーロードされたコンストラクタ

    : firstName(first), 

firstName オーバーロードされたコンストラクタ

      lastName(last) 

lastName オーバーロードされたコンストラクタ

    { //The constructor start
    ++counter; 

は、作成された各オブジェクトにつき、1つのプラスを追加します。

    cout << "Employee constructor for " << firstName
         << ' ' << lastName << " called." << endl;
    }

    ~Employee() { 

デストラクタ cout << "~Employee() called for " << firstName << ' ' << lastName << endl;

各オブジェクトの姓と名を返します。

        --counter; 

カウンタマイナス1

    }

    string getFirstName() const {
        return firstName; 
    }

    string getLastName() const {
        return lastName;
    }

    static int getCount() {
        return counter;
    }
private:
    string firstName;
    string lastName;

   static int counter = 0; 

ここで、エラーが発生しました。でも、どうして?

};

主なプログラム:employee2.cpp

#include <iostream>
#include "employee2.h"
using namespace std;

int main()
{
    cout << "Number of employees before instantiation of any objects is "
         << Employee::getCount() << endl; 

ここでは、クラスからteカウンタの値を呼び出しています。

    { 

新しいスコープブロックを開始する

        Employee e1("Susan", "Bkaer"); 

Employee クラスの e1 オブジェクトを初期化します。

        Employee e2("Robert", "Jones"); 

Employee クラスの e2 オブジェクトを初期化します。

        cout << "Number of employees after objects are instantiated is"
             << Employee::getCount(); 

        cout << "\n\nEmployee 1: " << e1.getFirstName() << " " << e1.getLastName()
             << "\nEmployee 2: " << e2.getFirstName() << " " << e2.getLastName()
             << "\n\n";
    } 

スコープブロックの終了

    cout << "\nNUmber of employees after objects are deleted is "
         << Employee::getCount() << endl; //shows the counter's value
} //End of Main

何が問題なのでしょうか? 何が問題なのか、さっぱりわからない。 いろいろ考えてみたのですが、何が問題なのかわかりません。

解決方法は?

その 初期化 静的メンバの counter はヘッダーファイル内に存在してはならない。

ヘッダーファイルの行を次のように変更します。

static int counter;

そして、以下の行を employee.cpp に追加してください。

int Employee::counter = 0;

理由は、このような初期化をヘッダーファイルに入れると、ヘッダーが含まれるすべての場所で初期化コードが重複してしまうからです。