码迷,mamicode.com
首页 >  
搜索关键字:enum    ( 4239个结果
iOS项目中使用微信分享功能SDK
1. TARGETS - Info - URL Types  identifier -> weixin URL Schemes ->  应用id 2.在AppDelegate.h 引入头文件 - #import "WXApi.h" 定义 { enum WXScene _scene; } 3.在AppDelegate.m中 - (id)init...
分类:微信   时间:2014-10-31 13:51:05    阅读次数:610
【队列】基于循环数组的实现
Description请完成以下队列类的实现:(请注意数组实现应该为循环数组)enum ErrorCode{ success, underflow, overflow};const int maxQueue = 100;template class MyQueue{public: MyQueue()...
分类:编程语言   时间:2014-10-31 10:03:02    阅读次数:371
OC开发中运用到的枚举
一 常见枚举的定义:typedef enum{LOGIN_SUCCESS,USER_NAME,USER_PASSWORD,OLD_LAT,OLD_LNG}FIELD_SAVED;二在iOS6和Mac OS 10.8以后Apple引入了两个宏来重新定义这两个枚举类型,实际上是将enum定义和typed...
分类:其他好文   时间:2014-10-31 09:58:25    阅读次数:144
循环 枚举 Enum 名称与值
foreach (WeekDay c in (WeekDay [])Enum.GetValues(typeof(WeekDay ))){Console.Write(String.Format("{0}是一周第{1}天",c.ToString(),(int)c));}Hashtable Ht = ne...
分类:编程语言   时间:2014-10-30 16:51:38    阅读次数:195
PixelFormat 像素格式
enum PixelFormatPixel formats available for Format7 modes.Enumerator: PIXEL_FORMAT_MONO88 bits of mono information.PIXEL_FORMAT_411YUV8YUV 4:1:1.PIXEL...
分类:其他好文   时间:2014-10-30 07:05:13    阅读次数:385
c 语言声明
声明修饰: 类型说明符:void char short int long signed unsigned float double 结构说明符(struct)枚举说明符(enum)联合说明符(union) 存储类型:auto ?extern ?static register? typedef 类型限定符...
分类:编程语言   时间:2014-10-30 02:13:19    阅读次数:236
cocos2d-x多分辨率适配方案:setDesignResolutionSize使用
1.setDesignResolutionSize使用方法及主要的三种适配模式在cocos2d-x 2.0里,提供了一个叫做setDesignResolutionSize的方法,直接一次设置就可以自动适配各种分辨率。这个方法的注释如下:enum ResolutionPolicy{kResolutio...
分类:其他好文   时间:2014-10-29 21:24:18    阅读次数:202
内存警告
告警等级系统有四种内存警告,定义如下: typedef enum { OSMemoryNotificationLevelAny = -1, OSMemoryNotificationLevelNormal = 0, OSMemoryNotificationLe...
分类:其他好文   时间:2014-10-29 16:28:30    阅读次数:134
C# 遍历枚举类
framework 4.0 环境下 方法 定义枚举类 判断枚举类中是否存在,若存在则输出 例子: Defined.QrCode.QrCodeType type;//枚举类 if (!Enum.TryParse( aa,out type)) { context.Response.Write("枚举类不...
分类:Windows程序   时间:2014-10-29 10:44:25    阅读次数:300
hadoop 计数器
一、hadoop有很多自带的计数器,详细看过运行log的都会看到各种数据 二、用户自定义计数器 在开发中经常需要记录错误的数据条数,就可以用计数器来解决。 1、定义:用一个枚举来定义一组计数器,枚举中的每个元素都是一个计数器 在main类中定义 enum RecordsCounter{ RIGHT_COUNTER, WRONG_COUNTER }; 2、使用...
分类:其他好文   时间:2014-10-29 00:17:37    阅读次数:330
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!