#import @interface UIColor (RandomColor) (UIColor *) randomColor; @end #import "UIColorRandomColor.h" @implementation UIColor (RandomColor) (UIColor *...
分类:
移动开发 时间:
2015-07-24 06:55:44
阅读次数:
278
关于 Nginx 并发连接数最近在学习使用 nginx , 做一些简单的压力测试时,发现并发连接数最大只能上到 100 多测试刚开始时的状态 ,netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'CLOSE_WAIT...
分类:
其他好文 时间:
2015-07-23 19:44:28
阅读次数:
354
scanf的返回值由后面的参数决定 scanf("%d%d", &a, &b); 如果a和b都被成功读入,那么scanf的返回值就是2 如果只有a被成功读入,返回值为1 如果a和b都未被成功读入,返回值为0 如果遇到错误或遇到end of file,返回值为eof 且返回值为int型.
分类:
其他好文 时间:
2015-07-23 17:31:34
阅读次数:
213
声明对象@interface Car : NSObjetc{ @public int wheels; int speed;}@end类的实现@implementation Car@endint main(){ Car *p=[Car new]; p->wheels=5; ...
分类:
其他好文 时间:
2015-07-23 17:04:10
阅读次数:
129
导入jquery.mousewheel.js定义url=路径JS 1 $(function(){ 2 /* 3 * 滑动加载 4 * */ 5 var page = 1; 6 var end = 0; //1代...
分类:
Web程序 时间:
2015-07-23 15:31:53
阅读次数:
135
我的环境是 centos 6.5 x64安装 oh my zsh 后,home end 键失效,解决办法为在 .zshrc 里添加设置如下#Rebind HOME and END to do the decent thing:bindkey '\e[1~' beginning-of-linebind...
分类:
其他好文 时间:
2015-07-23 13:46:49
阅读次数:
244
第三天******** 九宫格代码的现实@interface HMViewController ()/** 应用程序列表 */@property (nonatomic, strong) NSArray *appList;@end@implementation HMViewController- (N...
分类:
移动开发 时间:
2015-07-23 11:54:00
阅读次数:
219
Objective-C学习之旅 第三篇Objective-C 类声明,定义,实例,初始化类声明//类声明的编译处理指令以@interface开始,以@end结尾,在这之间代码便是类变量的定义和方法的声明。//类的声明和定义比其他语言复杂,这会让刚开始学习Objective-C的人非常困惑//准确的说...
分类:
其他好文 时间:
2015-07-23 10:39:48
阅读次数:
89
ps可以查看进程的内存占用大小,写一个脚本计算一下所有进程所占用内存大小的和。(提示,使用psaux列出所有进程,过滤出RSS那列,然后求和)#!/bin/bash
#Calculatehowmuchmemoryisoccupiedbythisprocess
#2015/07/22
psaux|awk-F‘‘‘{(sum=sum+$6)};END{printsum}‘
分类:
系统相关 时间:
2015-07-23 00:50:58
阅读次数:
182
if条件thenCommandelseCommandfi别忘了这个结尾If语句忘了结尾fitest.sh: line 14: syntax error:unexpected end of fiif 的三种条件表达式ifcommandthenif函数then命令执行成功,等于返回0 (比如grep ,...
分类:
系统相关 时间:
2015-07-23 00:13:44
阅读次数:
217