工程目录:Singleton.h//.h#define single_interface(class) + (class *)shared##class;//.m// \ 代表下一行也属于宏// ##是分隔符#define single_implementation(class) \static c...
分类:
数据库 时间:
2014-06-27 14:15:13
阅读次数:
255
打开vs2012加载项目的时候报如下的错误:未能正确加载“Microsoft.VisualStudio.Editor.Implementation.EditorPackage”包。此问题可能是由配置更改或安装另一个扩展导致的。可以通过查看文件“C:\Users\zhanggj.PDOMAIN\App...
分类:
其他好文 时间:
2014-06-26 23:11:14
阅读次数:
852
在Objective-C中,可以使用#import和@class来引用别的类型, 但是你知道两者有什么区别吗?
@class叫做forward-class, 你经常会在头文件的定义中看到通过@class的引用, 原因就是当你只用@class来引入一个类时, 编译器知道有这么一个类,也就是说它能识别Engine *engine;
而在implementation文件中,如果你想要访问e...
分类:
其他好文 时间:
2014-06-26 12:09:21
阅读次数:
220
This is NOT a tutorial on how to use openvswitch, this is for developers who want to know the implementation details of openvswitch project, thus, I a...
分类:
其他好文 时间:
2014-06-21 15:15:15
阅读次数:
217
一、RootViewController:
#import "RootViewController.h"
#import "SecondViewController.h"
@interface RootViewController ()
{
UILabel *_myLabel;
}
@end
@implementation RootViewController
- (id)in...
分类:
其他好文 时间:
2014-06-19 10:24:12
阅读次数:
283
1、安装扩展 windows下把 xhprof.dll 放到extensions目录下修改配置文件[xhprof]extension=xhprof.so;; directory used by default implementation of the iXHProfRuns; interface....
分类:
其他好文 时间:
2014-06-18 22:13:39
阅读次数:
261
IntroductionRecently our team was working on Veracity Quick Start sprint, when I was trying to migrate the JMS provider implementation from Tibco EMS ...
分类:
其他好文 时间:
2014-06-18 16:16:17
阅读次数:
328
上移view#import "MingRootViewController.h"@interface MingRootViewController (){ UIView *_myView; UIView *_myView1; BOOL _flag;}@end@implementation Mi...
分类:
其他好文 时间:
2014-06-18 13:41:02
阅读次数:
185
BACKGROUND INFORMATIONEmbodiments of the present invention are directed to optical links and, more particularly, to optical links which may save power...
分类:
其他好文 时间:
2014-06-16 23:27:59
阅读次数:
183
二叉搜索树的基本实现。 1 /* 2 Date: 2014-04-29 3 purpose: An
implementation of MAP using binary search tree. 4 */ 5 6 #ifndef
CUSTOMIZED_MAP_H 7 #define CUST...
分类:
其他好文 时间:
2014-06-12 15:59:38
阅读次数:
404