代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/137624/13308164
c enum.c
/*++
Copyright (c) 1997-1998 Microsoft Corporation
Module Name:
ENUM.C
Abstract:
This source file contains the routines which enumerate the USB bus
and populate the TreeVie
www.eeworm.com/read/137548/13313139
cpp enum.cpp
//: C03:Enum.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Keeping track of shapes
enum Sha
www.eeworm.com/read/238844/13319986
h enum.h
// Copyright (c) 1996 Federal Highway Administration
//
// This software has been developed for the Federal Highway Administration
// by Viggen Corporation under contract with Oak Ridge Nationa
www.eeworm.com/read/238844/13320293
cpp enum.cpp
// Copyright (c) 1996 Federal Highway Administration
//
// This software has been developed for the Federal Highway Administration
// by Viggen Corporation under contract with Oak Ridge Nationa
www.eeworm.com/read/136885/13354853
exe enum.exe
www.eeworm.com/read/322019/13391015
h enum.h
#ifndef OOENUM_H
#define OOENUM_H
#include "myexport.h"
#include
#include
#include
typedef QMap NameMap;
//start
/** @short An object-oriented enu
www.eeworm.com/read/322019/13391027
cpp enum.cpp
#include "enum.h"
Enum::Enum(int enumval) : m_Val(enumval) {
m_Val = enumval;
}
Enum::~Enum() {}
bool Enum::operator=(int other) {
if ((other >= 0) && (other
www.eeworm.com/read/321553/13403349
m enum.m
function enum=Enum(lower,upper,in)
t=in(find(in=lower));
www.eeworm.com/read/319472/13451286
c enum.c
/* enum.c -- uses enumerated values */
#include
#include // for strcmp()
#include // C99 feature
enum spectrum {red, orange, yellow, green, blue, violet};
www.eeworm.com/read/316786/13517833
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;