Contents

조회 수 68056 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
랜덤함수 사용시..

iOS
There are several built-in randomizers on the iPhone, and most people's first thought is to use rand() after seeding it by calling

srandom(time(NULL));

But... rand() is really not a very good PRNG. random() is a little better, but still less then ideal. Fortunately, these are not the only ones available on the iPhone. Personally, I like arc4random() because it's a decent pseudo-random algorithm and has twice the range or rand().

On the iPhone, RAND_MAX is 0x7fffffff (2147483647), while arc4random() will return a maximum value of 0x100000000 (4294967296), giving much more precision. You also don't need to seed arc4random(), as the first call to it automatically seeds it. 

결론은 arc4random() 을 사용하자.

[출처] http://iphonedevelopment.blogspot.com/2008/10/random-thoughts-rand-vs-arc4random.html


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
385 Develop [ios] Objective-C 문자열 조작 메서드 hooni 2013.04.23 26459
384 Develop [ios] Objective-C 에서 자주 사용하는 수학 함수와 유용한 Define hooni 2014.08.08 1867
383 Develop [ios] Objective-C 특정 문자 찾아 제거하기 hooni 2013.04.23 28069
382 Develop [ios] Objective-C 프로퍼티의 ATOMIC / NONATOMIC 속성 hooni 2014.03.17 3004
381 Develop [ios] Objective-C 프로퍼티의 strong, weak, assign file hooni 2014.03.17 4691
380 Develop [ios] Objective-C에서 SQLite 사용하기.. file hooni 2013.04.23 14562
379 Develop [ios] Objective-C에서 형식이 있는 문자열(Format Strings)에 사용할 수 있는 토큰들(Tokens) file hooni 2013.04.23 18787
378 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16847
377 Develop [ios] Pod 특정 버전 설치하고 사용하기 hooni 2022.05.28 1555
» Develop [ios] Random Thoughts: Rand() vs. arc4random() hooni 2013.10.31 68056
375 Develop [ios] Requesting Location Permissions in iOS file hooni 2018.08.18 1610
374 Develop [ios] SBCampanion App 초안 file hooni 2015.09.16 662
Board Pagination Prev 1 ... 34 35 36 37 38 39 40 41 42 43 ... 71 Next
/ 71