异常介绍SetOnceA convenient class which offers asemi-immutable objectwrapper implementation which allows one to set the value of an object exactly once, a...
分类:
其他好文 时间:
2014-08-31 14:27:51
阅读次数:
172
实例:写一个车的类//类的声明部分@interface Car : NSObject{ int _speed; //速度 int _wheel; //轮子}-(void)run;@end//类的实现部分@implementation Car-(void)run{ NSLog(@"车的速度是:%...
分类:
其他好文 时间:
2014-08-30 15:00:59
阅读次数:
143
#import "CJViewController.h"#import @interface CJViewController ()@property (nonatomic, strong)CLLocationManager *manager;@end@implementation CJViewCo...
分类:
其他好文 时间:
2014-08-29 21:13:58
阅读次数:
188
通过本文,您将可以了解在 OpenStack 中如何进行混合 Hypervisor 的配置及其实现原理的基本分析。本文主要结合作者在 Nova 中的实际开发经验对 OpenStack 中混合 Hypervisor 场景的原理进行分析,同时介绍在实际的应用场景中如何进行配置。通常,基于 OpenSta...
分类:
其他好文 时间:
2014-08-28 22:24:16
阅读次数:
388
1、类别与扩展: 类别能增加功能,不能定义变量。。类别就是在“ @interface 类名()”,“@implementation 类名()”括号里加东西的;扩展不能增加功能,能定义变量。。类名后面加括号就代表扩展,标示可以在下面定义实例变量。2、实例变量就是成员变量,全局变量是定义在类外面的变.....
分类:
其他好文 时间:
2014-08-27 23:13:28
阅读次数:
274
官方介绍HSSF is the POI Project's pure Java implementation of the Excel '97(-2007) file format. XSSF is the POI Project's pure Java implementation of the ...
分类:
编程语言 时间:
2014-08-27 16:01:58
阅读次数:
240
在AppDelegate.m文件中,创建视图控制器
#import "MAYAppDelegate.h"
#import "MAYViewController.h"
@implementation MAYAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(...
分类:
移动开发 时间:
2014-08-27 09:28:17
阅读次数:
238
@interface MyProfileViewCell : UITableViewCell@end@implementation MyProfileViewCell- (void)layoutSubviews{ [super layoutSubviews]; CGRect frame ...
分类:
移动开发 时间:
2014-08-26 13:09:26
阅读次数:
172
Test1.h@interface Test1 : NSObject- (void)objectFun;+ (void)classFun;@endTest1.m@implementation Test1- (void)objectFun{ NSLog(@"object function");}...
分类:
其他好文 时间:
2014-08-26 11:06:05
阅读次数:
214
在.h中声明属性如下
@property (retain, nonatomic) UIWindow *window;
@property (nonatomic, retain) UIView *aView;
@property (nonatomic, retain) UIButton *button;
在.m中实现如下
@implementation MAYAppDelegate...
分类:
移动开发 时间:
2014-08-24 14:15:12
阅读次数:
273