using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace ConsoleApplication1
{
//枚举的声明:访问修辞符 enum 枚举名:基础类型
public enum e...
分类:
其他好文 时间:
2014-07-11 08:04:47
阅读次数:
211
poj1753 Flip Game(枚举Enum+dfs)...
分类:
其他好文 时间:
2014-07-11 00:57:41
阅读次数:
251
POJ2965 The Pilots Brothers' refrigerator(直接计算或枚举Enum+dfs)...
分类:
其他好文 时间:
2014-07-10 21:18:20
阅读次数:
188
作业要求: 输出TypeCode枚举类内所有的值 1 //获取枚举类型的值 2 //var V = Enum.GetValues(typeof(TypeCode)); 3 4 //1、名称 5 Console.ForegroundColor = Cons...
分类:
其他好文 时间:
2014-07-10 16:31:13
阅读次数:
255
public enum ResType { Role = 0, Dept = 1, Group = 2, Site = 3, Org = 4, Sub=8 }这里定义了一个enum ResType用R...
分类:
其他好文 时间:
2014-07-10 16:07:45
阅读次数:
192
内存管理的管理范围任何继承了NSObject的对象对其他非对象类型无效(int、char、float、double、struct、enum等 )只有OC对象才需要进行内存管理的本质原因:OC对象存放于堆里面非OC对象一般放在栈里面(栈内存会被系统自动回收)系统是如何判断 什么时候需要回收一个对象所占...
分类:
其他好文 时间:
2014-07-09 14:22:54
阅读次数:
190
show create table stu;//显示建表语句create table t1(t enum('a','b','c'));insert into t1 values('a');create table t2(t set('a','b','c'));insert into t2 value...
分类:
数据库 时间:
2014-07-09 13:19:42
阅读次数:
197
经常带代码中看见这样的代码:
public static final int APP_START=1;
public static final int APP_PAUSE=0;
public static final int APP_STOP =2;
public static final int PLAY_START=1;
public static final int P...
分类:
其他好文 时间:
2014-07-08 17:43:11
阅读次数:
267
2014-7-6 flyfish
在初始阶段会有大量数据增删改,而后期很少有更改,后期大部分是查询操作。
建立索引,使用排序的vector,使用二分法查找
以用户信息为例
用户信息包括,ID,名字,性别,手机号码
class CGender
{
public:
enum
{
Female=0,
Male=1,
NotSpecified=2
};
};
clas...
分类:
编程语言 时间:
2014-07-08 17:15:16
阅读次数:
237
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace C_编辑基础
{
//枚举的意义就是限定变量的取值范围
enum gender{Male,Female,Unkown}; //声明一个类型,它是枚举类型(定义一个枚举),这个枚举有三个值。...
分类:
其他好文 时间:
2014-07-08 13:38:36
阅读次数:
191