C++实现的BOSN bson-cpp的编译
flyfish 2015-7-24
编译环境:
VC2010 64位
需要配置Boost库
在bsonspec.org中有一个C++实现的BOSN github.com/jbetnet/bson-cpp
A standalone C++ BSON implementation forked from the MongoDB...
分类:
编程语言 时间:
2015-07-24 16:14:07
阅读次数:
504
选择器:是一种变量的类型,用于存储方法,类似于C语言的函数指针
作用:用于UI控件的点击事件
新建一个Dog的类
在Dog.m中写两个方法
#import "Dog.h"
@implementation Dog
- (void)bark{
NSLog(@"狗在叫");
}
- (void)barkToPeople:(NSString *)name{...
分类:
其他好文 时间:
2015-07-24 14:20:44
阅读次数:
106
LVDS_RX(该IP是贵司给的)和DDR3_IP综合问题 1、单独测试LVDS_RX和DDR3_IP的时候,都能产生bit文件 2、把两者放到一起时,Synthesis和Implementation都能通过,但是最后产生bit文件时报IDELAYCTRL有Error,如下 目前,我们LVDS_RX...
分类:
其他好文 时间:
2015-07-24 12:41:32
阅读次数:
1026
#import @interface UIColor (RandomColor) (UIColor *) randomColor; @end #import "UIColorRandomColor.h" @implementation UIColor (RandomColor) (UIColor *...
分类:
移动开发 时间:
2015-07-24 06:55:44
阅读次数:
278
声明对象@interface Car : NSObjetc{ @public int wheels; int speed;}@end类的实现@implementation Car@endint main(){ Car *p=[Car new]; p->wheels=5; ...
分类:
其他好文 时间:
2015-07-23 17:04:10
阅读次数:
129
第三天******** 九宫格代码的现实@interface HMViewController ()/** 应用程序列表 */@property (nonatomic, strong) NSArray *appList;@end@implementation HMViewController- (N...
分类:
移动开发 时间:
2015-07-23 11:54:00
阅读次数:
219
what?说道jvm,可能指的是:
the abstract specification,
a concrete implementation, or
a runtime instance.
一个运行时的虚拟机实例( a runtime instance)就是负责运行一个java程序,这个实例随着java程序的开始(main方法运行)而产生,结束而消失。java虚拟机中有两种线程,守护线程与非守护线...
分类:
编程语言 时间:
2015-07-23 00:41:43
阅读次数:
119
Abstract. As implementation of one of the strategic steps in OpenCASCADE visualization component development road-map, support for GLSL shader program...
分类:
其他好文 时间:
2015-07-23 00:36:56
阅读次数:
261
#import @interface UIColor (RandomColor)+(UIColor *) randomColor;@end#import "UIColor+RandomColor.h"@implementation UIColor (RandomColor)+(UIColor *) ...
分类:
移动开发 时间:
2015-07-22 17:51:51
阅读次数:
108
很多时候我们可以看到在xcode的.m开发文档中有self.aa与_aa字段,一直不太明白这其中的区别,和相关的用法,知道写一个东西,调bug的时候顿悟,现在记录下来,仅供参考!
很多时候我们这样写我们的Objective-c代码
//.h文件部分
@interface demo_selfAnd_
@end
//.m文件部分
@implementation demo_selfA...
分类:
其他好文 时间:
2015-07-22 16:28:44
阅读次数:
86