枚举举例

#include

using namespace std;

class test

{

public:

    enum type{ One=12,Two,Three,Four,Five };  //所有的值都是test类的数据

    test():t(One){}

    type getT()

    {

        return t;

    }

private:

      type t;

};

int main(int argc, char *argv[])

{

    test s;

    cout<

    cout<

    cout<

    return 0;

}

 

你可能感兴趣的:(C++编程)