代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/286314/4040089
cs enum.cs
using System; // System namespace.
// TODO: Declare enum
class TestAccount
{
static void Main()
{
// TODO: Write Code
}
}
www.eeworm.com/read/286314/4040101
cs enum.cs
using System; // System namespace.
public enum AccountType {Checking, Deposit}
class TestAccount
{
static void Main()
{
AccountType goldAccount;
AccountType platinumAccount;
www.eeworm.com/read/286235/4040775
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/284420/4064786
tpl enum.tpl
{*
/**
* The contents of this file are subject to the SugarCRM Public License Version
* 1.1.3 ("License"); You may not use this file except in compliance with the
* License. You may obtain a
www.eeworm.com/read/282551/4090951
cpp enum.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you lic
www.eeworm.com/read/274119/4188959
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/274098/4189643
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/271376/4229147
java enum.java
// Copyright , 2002. All Rights Reserved.
// This software is the proprietary information of www.applicate.de.
// Use is subject to license terms.
package de.applicate.util.lang;
www.eeworm.com/read/440906/1775982
c enum.c
// Build don't link:
// GROUPS passed enums
template
struct templ
{
enum { val = 0 };
};
struct Foo
{
enum {
bar = 0,
len = templ::val
};
};
void func()
{
int s = Foo: