1 public class ThreadA extends Thread { 2 private static int threadID = 0; 3 4 public ThreadA() { 5 super("ThreadID:" + (++threadID)...
分类:
编程语言 时间:
2014-07-16 18:33:09
阅读次数:
184
- (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor];}
分类:
其他好文 时间:
2014-07-16 17:06:52
阅读次数:
163
@interface MoveView : UIView{ CGPoint startPoint;}#import "MoveView.h"@implementation MoveView- (id)initWithFrame:(CGRect)frame{ self = [super i...
分类:
其他好文 时间:
2014-07-14 15:42:42
阅读次数:
157
之前我介绍过apache abtest来做压力测试(http://www.cnblogs.com/super-d2/p/3831155.html)但是怎么在linux下安装apache,一般而言Linux下安装apache需要源码安装;首先,到apache的官网下载apache源码包:http://...
分类:
系统相关 时间:
2014-07-14 14:37:42
阅读次数:
493
先上图:
这个UIView可以这样写:
-(id)initWithFrame:(CGRect)frame backImage:(UIImage*)image msgStr:(NSString*)txt
txtColor:(UIColor*)color{
self = [super initWithFrame:frame];
if (self)...
分类:
移动开发 时间:
2014-07-14 11:22:27
阅读次数:
246
R1配置:----------------------------------------------------#sysname RT1#super password level 3 cipher H`'>T.,>(V@X!XT.,>(V@X!XT.,>(V@X!XT.,>(V@X!XT.,>(V...
分类:
其他好文 时间:
2014-07-13 22:11:00
阅读次数:
714
题意:有N个齿轮,三种操作1.操作L x y:把齿轮x,y链接,若x,y已经属于某个齿轮组中,则这两组也会合并。2.操作Q x y:询问x,y旋转方向是否相同(等价于齿轮x,y的相对距离的奇偶性)。3.操作D x :拆下齿轮x,并且x所在的齿轮组不会断开4.操作S x : 查询齿轮x所在的齿轮组有....
分类:
其他好文 时间:
2014-07-13 19:43:22
阅读次数:
191
当时不知道怎么下手,后来一看原来就是排个序然后乱搞就行了。解法不想写了,可见:http://blog.csdn.net/u013368721/article/details/28071241其实就是滑动窗口的思想。代码:#include #include #include #include #inc...
分类:
其他好文 时间:
2014-07-13 19:31:18
阅读次数:
212
super()的作用
super可以用来访问超类的构造方法和被子类所隐藏的方法,如果子类中有方法与超类中的方法名称和参数相同,则超类中的方法就被隐藏起来,也就是说在子类中重载了父类中的方法。
引用父类中所隐藏的语法格式如下:
super(参数列表)或super.方法名(参数列表)
下面通过代码展示一下super的用法:
package cn.demo;
public class Dem...
分类:
编程语言 时间:
2014-07-13 19:04:49
阅读次数:
243
super()的作用:super可以用来访问超类的构造方法和被子类所隐藏的方法,如果子类中有方法与超类中的方法名称和参数相同,则超类中的方法就被隐藏起来,也就是说在子类中重载了父类中的方法。引用父类中所隐藏的语法格式如下:super(参数列表)或super.方法名(参数列表)下面通过代码展示一下su...
分类:
其他好文 时间:
2014-07-13 17:42:31
阅读次数:
175