IOS ID生成器_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > IOS ID生成器

IOS ID生成器

 2014/4/12 17:39:44  Anxin1225  博客园  我要评论(0)
  • 摘要:////IdGenerator.m//Copyright(c)2014年青岛拓宇网络科技有限公司.Allrightsreserved.//#import"IdGenerator.h"staticlonglongtime_stamp=0;staticlonglongtime_stamp_now=0;staticNSMutableArray*temp=NULL;staticNSNumber*random_n=NULL;staticNSLock*theLock=NULL
  • 标签:iOS
class="brush:objc;gutter:true;">//
//  IdGenerator.m
//  Copyright (c) 2014年 青岛拓宇网络科技有限公司. All rights reserved.
//

#import "IdGenerator.h"

static long long time_stamp = 0;
static long long time_stamp_now = 0;
static NSMutableArray *temp = NULL;
static NSNumber *random_n = NULL;
static NSLock *theLock = NULL;

@implementation IdGenerator

/*
 *  获取下一个Id
 */
+ (long long)next{
    
    if(theLock == NULL)
        theLock = [[NSLock alloc]init];
    
    if(temp == NULL)
        temp = [[NSMutableArray alloc]init];
    
    @synchronized(theLock){
        time_stamp_now = [[NSDate date] timeIntervalSince1970];
        if(time_stamp_now != time_stamp){
            //清空缓存,更新时间戳
            [temp removeAllObjects];
            time_stamp = time_stamp_now;
        }
        
        //判断缓存中是否存在当前随机数
        while ([temp containsObject:(random_n = [NSNumber numberWithLong:arc4random() % 8999 + 1000])])
            ;
        
        if ([temp containsObject:random_n]) {
            return -1;
        }
        
        [temp addObject:[NSNumber numberWithLong:[random_n longValue]]];
    }
    
    return (time_stamp * 10000) + [random_n longValue];
}

@end

不重复的Id生成器,理论上每秒钟最多可以生成8999条Id,实际上每秒钟约能生成6000条Id。

转载请标明出处:http://www.cnblogs.com/anxin1225/p/3660506.html

友情链接地址:http://c.jinhusns.com/

上一篇: asp.net 处理流程 下一篇: 没有下一篇了!
发表评论
用户名: 匿名