代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/247076/12684937
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/333336/12686462
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/333254/12692712
cpp enum.cpp
// enum.cpp -- a simple enumeration
#include
#include
using namespace std;
enum spectrum {red, orange, yellow, green, blue, violet, indigo, ultraviolet};
int main()
{
en
www.eeworm.com/read/333254/12693228
cpp enum.cpp
// enum.cpp -- use enum
#include
// create named constants for 0 - 6
enum {red, orange, yellow, green, blue, violet, indigo};
int main()
{
using namespace std;
cout
www.eeworm.com/read/246005/12765048
h enum.h
/**************************************************************************
* *
* Light OPC Server development library
www.eeworm.com/read/246005/12765144
cpp enum.cpp
/**************************************************************************
* *
* Light OPC Server development library
www.eeworm.com/read/245818/12779243
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/245414/12801150
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/244945/12829582
m enum.m
%最优化枚举法例
clear;
vmax=-inf;
for x2=10:20
for x3=-5:16
if x2+2*x3>=10&3*x2+2*x3vmax,
vmax=v;x20=x2;x30=x3;
end
www.eeworm.com/read/143089/12899664
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