码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
JMS是一种应用于异步消息传递的标准API
JMS是一种应用于异步消息传递的标准API,作为Java平台的一部分,JMS可以允许不同应用、不同模块之间实现可靠、异步数据通信。一些概念JMS provider An implementation of the JMS interface for a Message Oriented Middle... ...
分类:Windows程序   时间:2016-06-16 21:43:19    阅读次数:256
【IOS类扩展之日期操作】NSDate+Helpers
import “Date.h”@implementation NSDate(Helpers)//获取年月日如:19871127. - (NSString *)getFormatYearMonthDay { NSString *string = [NSString stringWithFormat:@”%d%02d%02d”,[self getYear],[self getMonth],...
分类:移动开发   时间:2016-06-16 10:33:05    阅读次数:442
【OBJC类扩展之MD5加密】NSString+MD5
#import @interface NSString (md5) - (NSString *) md5; @end   #import “NSString+MD5.h” #import @implementation NSString (md5) - (NSString *) md5 { const char *cStr = [selfUTF8String]; unsign...
分类:其他好文   时间:2016-06-16 10:32:53    阅读次数:375
【OBJC类扩展之属性字典】NSObject+Property
#import #import @interface NSObject (Property) //将对象属性封装到字典,并返回字典 -(NSDictionary *)propertyDictionary; @end @implementation NSObject (Property) -(NSDictionary *)propertyDictionary { ...
分类:其他好文   时间:2016-06-16 10:32:33    阅读次数:250
【OBJC类扩展之尺寸】UIView+Size
import import “UIView+Size.h” @implementation UIView (Size) - (void)setSize:(CGSize)size; { CGPoint origin = [self frame].origin;[self setFrame:CGRectMake(origin.x, origin.y, size.width, size...
分类:其他好文   时间:2016-06-16 10:31:26    阅读次数:165
Anaconda 安装 ml_metrics package
ml_metrics is the Python implementation of Metrics implementations a library of various supervised machine learning evaluation metrics. 首先,打开 Anaconda ...
分类:其他好文   时间:2016-06-15 22:16:22    阅读次数:352
NPTL vs PThread
NPTL vs PThread POSIX threads (pthread) is not an implementation, it is a API specification (a standard, on paper, in english) of several functions wh ...
分类:其他好文   时间:2016-06-10 14:54:34    阅读次数:131
iOS开发学习之NSFetchedResultsController
应用场合:配合Core Data和Table View使用,Core Data存储数据,Table View显示数据 1.在需要显示数据的视图控制器(包含有table view)中添加NSFetchedResultsController实例变量 @implementation LocationsVi ...
分类:移动开发   时间:2016-06-09 16:00:00    阅读次数:245
Scale Space(zz Wiki)
Scale space From Wikipedia, the free encyclopedia Scale space Scale-space axioms Scale-space implementation Feature detection Edge detection Blob dete ...
分类:其他好文   时间:2016-06-08 23:07:49    阅读次数:324
1803条   上一页 1 ... 55 56 57 58 59 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!