An Python implementation of heap-sortbased on the detailed algorithm description in Introduction to Algorithms Third Editionimport randomdef max_heap....
分类:
编程语言 时间:
2015-02-25 22:19:46
阅读次数:
185
(一)成员变量的作用域(了解)直接访问:直接利用成员变量名来访问@public : 哪都可以直接访问@protected : 当前类和子类的@implementation和@end之间可以直接访问(什么都不写默认为这个)@private : 当前类的@implementation和@end之间才可以...
分类:
移动开发 时间:
2015-02-24 13:42:45
阅读次数:
172
一 OC类的声明和实现1.接口的声明@interface NewClassName: ParentClassName{ 实例变量 ...} 方法的声明 ...@end2.类的实现@implementation NewClassName{ 方法的实现 //code ...
分类:
其他好文 时间:
2015-02-22 11:00:32
阅读次数:
120
implementation DetailViewController- (void)viewDidLoad { [super viewDidLoad]; self.title = @"Detail"; self.navigationController.navigationBar...
分类:
其他好文 时间:
2015-02-19 10:44:04
阅读次数:
173
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; UIImage *i...
分类:
其他好文 时间:
2015-02-17 20:59:39
阅读次数:
133
#import @interface MyView : UIView@end#import "MyView.h"@implementation MyView-(void) drawRect:(CGRect)rect{ [self drawLine];}#pragma mark - 绘图方法#p...
分类:
其他好文 时间:
2015-02-17 11:37:52
阅读次数:
197
1.Pimpl概念在进行项目开发中可能遇到的问题,程序编译耗时很长,每一次简单修改接口之后项目都会被完全重新编译,浪费了很多时间。这个机制是Private Implementation的缩写,顾明思议,将实现私有化,力图使得头文件对改变不透明.它的优点很多,诸如降低编译依赖、提高重编译速度之类的工具...
分类:
其他好文 时间:
2015-02-15 20:33:11
阅读次数:
271
storm-hdfs 这个插件支持 Rotation Actions 这个功能,官方文档解释是这样的,
### File Rotation Actions
Both the HDFS bolt and Trident State implementation allow you to register any number of `RotationAction`s.
What...
分类:
其他好文 时间:
2015-02-14 11:02:20
阅读次数:
185
IDMPhotoBrowserIDMPhotoBrowser is a new implementation based onMWPhotoBrowser.IDMPhotoBrowser实现了图片浏览器的功能,基于MWPhotoBrowser.We've added both user experi...
分类:
其他好文 时间:
2015-02-14 07:36:52
阅读次数:
304
如果有如下一个类#import @interface Person : NSObject@property int age;@end@implementation Person@endcategory可以在不修改Person类的代码,不用子类继承的方式扩展其方法(实际等同于将一个类拆分在不同的文件中...
分类:
其他好文 时间:
2015-02-13 22:21:07
阅读次数:
165