码迷,mamicode.com
首页 >  
搜索关键字:super pixel    ( 7505个结果
The Super Powers
The Super PowersTime Limit:1000MSMemory Limit:Unknown64bit IO Format:%lld & %llu[Submit] [Go Back] [Status]DescriptionAThe Super PowersWe all know the...
分类:其他好文   时间:2014-07-22 23:09:34    阅读次数:554
python中的继承
继承是面向对象的重要特征,它可以提高代码的复用性,从而减少某些代码的重写。继承可以分为单继承和多重继承。python中指定基类的方法是定义派生类时在括号中写入基类的名字,如class derive(base).python可以使用两种单继承的方法...
分类:编程语言   时间:2014-05-03 23:50:53    阅读次数:458
IOS 设置Launch image停留时间
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [NSThread sleepForTimeInte...
分类:移动开发   时间:2014-05-02 00:25:42    阅读次数:441
IOS中Block的循环引用
@interface DemoObj()@property (nonatomic, strong) NSOperationQueue *queue;@end@implementation DemoObj- (instancetype)init{ self = [super init]; ...
分类:移动开发   时间:2014-05-01 20:28:37    阅读次数:917
ios消息
Class1 typedef struct objc_class *Class; 1 struct objc_class { 2 Class isa OBJC_ISA_AVAILABILITY; 3 4 #if !__OBJC2__ 5 Class super_class ...
分类:移动开发   时间:2014-05-01 07:13:10    阅读次数:502
像素格式
像素格式像素格式(pixel format)像素色彩按分量的大小和排列。这种格式以每个像素所使用的总位数以及用于存储像素色彩的红、绿、蓝和 alpha 分量的位数指定。目录[hide]1像素格式2颜色通道3全部格式4格式笔记5WPF格式像素格式像素格式描述了像素数据存储所用的格式。定义了像素在内存中...
分类:其他好文   时间:2014-05-01 01:40:25    阅读次数:1384
【梦幻连连连】源码分析(一)
进入游戏连连第一个场景,如下:   初始化该场景精灵所需的信息、背景/音效及图层UI bool HelloWorld::init() {     //////////////////////////////     // 1. super initfirst     if (!CCLayer::init() )     {         return false;...
分类:其他好文   时间:2014-04-30 22:34:40    阅读次数:226
Java常见问题之this()和super()的用法
this()用法: 一个构造函数可以使用this()来调用同一个类的另外一个构造函数。 一个构造函数最多只能调用一次this(),且this()只能作为构造函数的第一条语句。 super()用法: 一个构造函数使用super()来调用父类的构造函数。 如果没有为一个类编写构造函数,则编译器会自动构造一个不带参数的构造函数,且构造函数中只有一条语句super();。 如果为一个类...
分类:编程语言   时间:2014-04-30 22:25:39    阅读次数:290
黑马程序员 面向对象(上) 封住,继承,多态,以及this和super的用法
撒旦...
分类:其他好文   时间:2014-04-29 13:42:19    阅读次数:354
在view扣除正方形
- (void)drawRect:(CGRect)rect { [super drawRect:rect]; CGContextRef ctx = UIGraphicsGetCurrentContext(); CGContextSetRGBFillColor(ctx, .3, .3, .3, .1); CGContextFillRect(ctx, self.boun...
分类:其他好文   时间:2014-04-29 13:33:22    阅读次数:284
7505条   上一页 1 ... 748 749 750 751 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!