Develop
2013.10.31 16:51
[ios] Random Thoughts: Rand() vs. arc4random()
조회 수 78037 댓글 0
랜덤함수 사용시..
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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
267 | Develop |
[c] 바로 보고 정리할 것.. ㅋㄷㅋㄷ
![]() |
hooni | 2013.04.23 | 8047 |
266 | Develop | [js] ajax를 이용해 외부문서 불러오기.. | hooni | 2013.04.23 | 8041 |
265 | Develop |
[c] 숫자 맞추는 게임..
![]() |
hooni | 2013.04.23 | 8035 |
264 | Develop |
[asp] 폼메일 예제와 메일 포워딩 프로그램
![]() |
hooni | 2013.04.23 | 8031 |
263 | Develop |
[c++] mfc로 만든 사용자 계정 리스트 출력(EnumUser) 프로그램 예제
![]() |
hooni | 2013.04.23 | 8031 |
262 | Develop |
[php] 서버 이상 체크 해서 문자보내는 샘플소스..
![]() |
hooni | 2013.04.23 | 8022 |
261 | Develop | [js] 이벤트 핸들러(Event Handlers) | hooni | 2003.04.23 | 8019 |
260 | Develop |
[c] 베이지언(Bayesian) 패턴인식 과제 ㅋㅋ
![]() |
hooni | 2013.04.23 | 8019 |
259 | Develop |
논문에 들어갈 툴바 테스트 해볼 것..
![]() |
hooni | 2013.04.23 | 8013 |
258 | Develop |
[pdf] 윈도우즈 95 시스템 프로그래밍(Windows 95 system programming)
![]() |
hooni | 2013.04.23 | 8009 |
257 | Develop | [c] 프로세스간의 통신(파이프) | hooni | 2003.04.23 | 7993 |
256 | Develop | [js] get방식, url이후 모두 그대로 읽어오기.. | hooni | 2013.04.23 | 7985 |