代码搜索:enum

找到约 10,000 项符合「enum」的源代码

代码结果 10,000
www.eeworm.com/read/355030/10300385

cpp enum.cpp

//: C03:Enum.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Keeping track of shapes. enum Sh
www.eeworm.com/read/161964/10351504

html enum.html

www.eeworm.com/read/161964/10351819

html enum.html

www.eeworm.com/read/353896/10407139

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/278961/10485645

png enum.png

www.eeworm.com/read/160839/10492752

class enum.class

www.eeworm.com/read/352201/10575619

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/278058/10577231

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/278058/10577904

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/421976/10673313

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;