上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页

2017年9月11日

摘要: #include #include #include /* typedef unsigned long ngx_atomic_uint_t; typedef volatile ngx_atomic_uint_t ngx_atomic_t; typedef long ngx_atomic_int_t; #defin... 阅读全文
posted @ 2017-09-11 18:40 阮減显 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include #include #include int main(){ char *pAddr,*cAddr; int shmid; struct shmid_ds shmbuf; //IPC_PRIVATE:创建新的共享内存 //S_IRUSR|S_I... 阅读全文
posted @ 2017-09-11 13:32 阮減显 阅读(175) 评论(0) 推荐(0) 编辑

2017年9月7日

摘要: #include #include #include #include using namespace std; bool findCondition(int x) { return x%2==0; } //仿函数 template struct display{ void operator()(const T &x)const { cout iv;//vector... 阅读全文
posted @ 2017-09-07 17:32 阮減显 阅读(82) 评论(0) 推荐(0) 编辑

2017年8月24日

摘要: void foo(int (^blkParam)()){ NSLog(@"foo param %d",blkParam()); } void run() { //定义 返回值类型 (^block的名称)(参数类型) = ^返回值类型(参数) {...}; void (^blk)(void) = ^{ NSLog(@"aaaaa"); }; ... 阅读全文
posted @ 2017-08-24 01:41 阮減显 阅读(104) 评论(0) 推荐(0) 编辑

2016年12月2日

摘要: 发布看看需要审核吗? 阅读全文
posted @ 2016-12-02 15:40 阮減显 阅读(86) 评论(0) 推荐(0) 编辑

2016年11月30日

摘要: package main; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; //import java.nio.channels.ClosedChannelException; i... 阅读全文
posted @ 2016-11-30 17:33 阮減显 阅读(207) 评论(0) 推荐(0) 编辑

2016年11月29日

摘要: 演示,不是算法 void m4(){ int a[4]={1,0,0,1}; int m[15]; int temp; for(int i=0;i a[7]+a[0] int reg[18]={1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; int m[32]... 阅读全文
posted @ 2016-11-29 17:49 阮減显 阅读(1397) 评论(0) 推荐(0) 编辑

2016年11月28日

摘要: 类中可以有几种东西:属性,方法,构造器,初始化块 new创建对象时, 1.类属性和类初始化块分配空间。 2.执行默认初始化 如有父类,先为父类执行父类自己的1和2步骤,再执行上面的1和2。 一个类执行new多个对象,类属性和类初始化块只初始化一次。 private:属性和方法只能在该类内访... 阅读全文
posted @ 2016-11-28 21:29 阮減显 阅读(106) 评论(0) 推荐(0) 编辑

2016年11月23日

摘要: m序列 阅读全文
posted @ 2016-11-23 17:14 阮減显 阅读(403) 评论(0) 推荐(0) 编辑

2016年11月4日

摘要: #include int dec2binarr(int n,int *a){ int i=0,j,k; while(n!=0){ a[i++]=n%2; n=n/2; } for(j=0;j<i/2;j++){ k = a[i-j-1] ; a[i-j-1]= a[j]; a[j] ... 阅读全文
posted @ 2016-11-04 18:03 阮減显 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页

导航