Contents

조회 수 77976 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
541 Develop [android] Canvas를 이용해 이미지 확대/축소 하기 hooni 2013.04.23 64141
540 Develop [java] 입출력 스트림 1부 (문자) file hooni 2013.04.23 18154
539 Develop [java] 입출력 스트림 2부 (바이트) file hooni 2013.04.23 11261
538 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 19892
537 Develop [android] 디바이스(시뮬레이터) hosts 파일 수정하기 hooni 2013.04.23 33715
536 Develop [android] 개발 환경 세팅 따라하기 ㅋㅋ file hooni 2013.04.23 41193
535 Develop [ios] 아이폰용 앱 오픈 소스들 hooni 2013.04.23 488330
534 Develop [doc] Json Framework 설치와 사용 file hooni 2013.04.23 25809
533 Etc 스마트폰 보안 해외 발생 사례~ file hooni 2013.04.23 26169
532 PPT [doc] 정보보호이론 강의자료 (중앙대꺼..) 2 file hooni 2013.04.23 24841
531 Develop [ios] UDID와 UUID (디바이스의 Unique Identifier) file hooni 2013.04.23 28629
530 Develop [ios] 푸시알림(APNS)에 대한 php 라이브러리 ㅋㅋ hooni 2013.04.23 17777
Board Pagination Prev 1 ... 49 50 51 52 53 54 55 56 57 58 ... 99 Next
/ 99