代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/480849/6662543
cpp ch02_1.cpp
// Chapter 2 - Programming exercise 1
#include
enum game_result {WIN, LOSE, TIE, CANCEL, FORFEIT};
void main()
{
game_result result;
enum game_resu
www.eeworm.com/read/402276/11539893
cpp managment system.cpp.cpp
#include
#include
#include
using namespace std;
enum Sex{Male,Female};
struct Date
{
int year;
int month;
int day;
};
enum Qualification{Master,Graduated,PhD,
www.eeworm.com/read/347088/11700836
java type.java
package ENUM;
public enum TYPE {
ALL_DATA, IN_DATA, OUT_DATA, ADMIN_DATA,
CLOSE, BEGIN_VOICE, END_VOICE, BE_ADMIN, GET_FILE;
}
www.eeworm.com/read/347088/11701142
java type.java
package ENUM;
public enum TYPE {
ALL_DATA, IN_DATA, OUT_DATA, ADMIN_DATA,
CLOSE, BEGIN_VOICE, END_VOICE, BE_ADMIN, GET_FILE
}
www.eeworm.com/read/347088/11701312
java type.java
package ENUM;
public enum TYPE {
ALL_DATA, IN_DATA, OUT_DATA, ADMIN_DATA,
CLOSE, BEGIN_VOICE, END_VOICE, BE_ADMIN, GET_FILE
}
www.eeworm.com/read/252683/12268011
h serial.h
#include
class Serial
{
public:
enum
{
RECV_BUFFER_SIZE=2048,
};
enum
{
WRITE_BUFFER_SIZE=2048,
};
Serial();
~Serial();
void Open(const char* pPort,DWORD dw
www.eeworm.com/read/131510/14142891
h config.h
/* ---------------- config.h -------------- */
#ifndef CONFIG_H
#define CONFIG_H
enum colortypes {
STD_COLOR,
SELECT_COLOR,
FRAME_COLOR,
HILITE_COLOR
};
enum grounds { F
www.eeworm.com/read/226201/14489078
bas mdldatabase5.bas
Attribute VB_Name = "mdlDatabase5"
Option Explicit
Public Enum Version
WLB = 0
ZYB = 1
BZB = 2
PJB = 3
End Enum
Public genuVersion As Version
Public gstrVersionTitle As Stri
www.eeworm.com/read/213522/15130943
cpp queen.cpp
// QUEEN.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
enum BOOLEAN
{
FALSE = 0,
TRUE = 1
};
enum STATUS
{
EMPTY = 0,
HA
www.eeworm.com/read/470720/1447713
c scoping9.c
// Bug: g++ silently mangles the second 'B' to 'A::B', so the definition is
// lost.
// Build don't link:
struct A {
enum B { };
};
struct C: public A {
enum B { };
void foo (C::B);
};