代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/125819/6020997
c enum.c
/* Test the types of enum.
*/
#include
enum _SimpleEnum {
SIMPLE_ZERO,
SIMPLE_ONE,
SIMPLE_TWO
};
enum _ValuesEnum {
VALUES_ZERO,
VALUES_FIVE = 5,
VALUES_SIX,
VALUES_SEVEN,
www.eeworm.com/read/125819/6021112
c enum.c
#ifdef TEST1
enum tag
{
first,
second,
third
};
#endif
#ifdef TEST2
enum tag
{
first, /* IGNORE */
second,
third,
first, /* ERROR */
fourth
};
#endif
#ifdef TEST3
enum
{
first, /
www.eeworm.com/read/124426/6047798
java enum.java
package org.jbpm.util.lang;
import java.io.*;
import java.util.*;
public class Enum implements Serializable {
private static Map enums = new HashMap();
protected Object id = null;
www.eeworm.com/read/117181/6110871
exp enum.exp
# OBSOLETE # Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
# OBSOLETE
# OBSOLETE # This program is free software; you can redistribute it and/or modify
# OBSOLETE # it under the terms of
www.eeworm.com/read/117181/6110894
ch enum.ch
hugo: module
synmode m_set = set (a, b, c, d, e, f, g, h, i);
dcl x long;
dcl y m_set;
writetext (stdout, "done.%/");
end hugo;
www.eeworm.com/read/107846/6188173
c enum.c
# include
void main()
{
/* 经过下面的定义后,默认有:blue=0 red=1 ... black=4 */
enum color {blue, red, yellow, purple, black};
enum color i, j, k, pri;
int n, loop;
n = 0;
for(i=blue;
www.eeworm.com/read/101042/6258679
c a_enum.c
/* crypto/asn1/a_enum.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/145285/6350516
c enum.c
# include
void main()
{
/* 经过下面的定义后,默认有:blue=0 red=1 ... black=4 */
enum color {blue, red, yellow, purple, black};
enum color i, j, k, pri;
int n, loop;
n = 0;
for(i=blue;
www.eeworm.com/read/487368/6510755
c enum.c
# include
void main()
{
/* 经过下面的定义后,默认有:blue=0 red=1 ... black=4 */
enum color {blue, red, yellow, purple, black};
enum color i, j, k, pri;
int n, loop;
n = 0;
for(i=blue;
www.eeworm.com/read/487037/6522692
cc enum.cc
#include
using namespace std;
enum Color{BLACK, YELLOW, GREEN, BLUE, RED, WHITE, PINK};
enum Cloth{COAT=5, SHIRT, TROUSERS=11, SKIRT, CAP, SOCKES, SHOES};
enum Flags{NONE=0, EXECUTE=1