下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
//// IDGenerator.m// copyright (c) 2014年 青岛拓宇网络科技有限公司. All rights reserved.// #import "IDGenerator.h" staticlonglongtime_stamp = 0;staticlonglongtime_stamp_Now = 0;staticnsMutableArray*temp =NulL;staticnsNumber*random_n =NulL;staticnsLock*theLock =NulL; @implementationIDGenerator /* * 获取下一个ID */+ (longlong)next{ if(theLock ==NulL) theLock = [[NSLockalloc]init]; if(temp ==NulL) temp = [[NSMutableArrayalloc]init]; @synchronized(theLock){ time_stamp_Now = [[NSDatedate] timeIntervalSince1970]; if(time_stamp_Now != time_stamp){ //清空缓存,更新时间戳 [temp removeAllObjects]; time_stamp = time_stamp_Now; } //判断缓存中是否存在当前随机数 while([temp containsObject:(random_n = [NSNumbernumberWithLong:arc4random() % 8999 + 1000])]) ; if([temp containsObject:random_n]) { return-1; } [temp addobject:[NSNumbernumberWithLong:[random_n longValue]]]; } return(time_stamp * 10000) + [random_n longValue];} @end
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的IOS ID生成器全部内容,希望文章能够帮你解决IOS ID生成器所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)