from enum import Enum # 自定義一個類別class NewClass(): New1 ... enum — 枚舉型態— 你所不知道的Python 標準函式庫用法07 · Day28-enum –iT邦幫忙. ... <看更多>
enum用法 在 Unity 應用領域- 楊子慶分享C# 的enum 用法。... | Facebook 的推薦與評價
楊子慶分享C# 的enum 用法。 https://www.facebook.com/groups/UnityFrontier/permalink/3293448674032810/ ... <看更多>
enum用法 在 [問題] enum用法? - 看板C_and_CPP - 批踢踢實業坊 的推薦與評價
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
G++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
NO
問題(Question):
enum 宣告問題、初始化
程式碼(Code):(請善用置底文網頁, 記得排版)
以下是我的enum的宣告:(在我的標頭檔)
#ifndef __NETLIST_H__
#define __NETLIST_H__
using namespace std;
enum Type_E;
enum Type_E {
NONE=0,
LOW,
HIGH,
INPUT,
NOT,
AND,
NAND,
OR,
NOR,
XOR,
XNOR
};
#endif
error message:
error: use of enum 'Type_E' without previous declaration
補充說明(Supplement):
這個的宣告方式我原本是使用visual studio 2010 、compiler之後我的code都可以
正常work,然後丟進工作站(linux)用g++ compiler之後就有這個錯誤訊息,
我想請問這個的error訊息要如何de?為什麼visual studio都可以過得code在給g++
compile之後會有問題?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 123.240.62.4
... <看更多>