Develop
2013.10.31 16:51
[ios] Random Thoughts: Rand() vs. arc4random()
조회 수 77976 댓글 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 | [php] GregorianToJD(), JDToGregorian() 함수 내용 | hooni | 2013.12.25 | 11551 |
266 | Develop | [c] pcap을 이용한 패킷 분석 ㅎㅎ | hooni | 2003.04.23 | 11570 |
265 | Develop | [js] jQuery plugin 요약 | hooni | 2013.12.20 | 11585 |
264 | Develop |
[ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)
![]() |
hooni | 2016.03.23 | 11606 |
263 | Develop | [php] 날짜 정보 출력 (년,월,일,시,분,초) | hooni | 2013.04.23 | 11615 |
262 | Develop | [c] 프로세스 검사하기 | hooni | 2013.04.23 | 11660 |
261 | Develop |
[js] 순환참조에 의한 메모리 누수 관련
![]() |
hooni | 2013.12.17 | 11664 |
260 | Develop | [js] 이벤트 전파 3단계 | hooni | 2013.12.18 | 11671 |
259 | Develop | [js] 자바스크립트로 응용프로그램 실행 ㅎㅎ | hooni | 2003.04.23 | 11675 |
258 | Develop |
[c++] 데이터 압축 프로그램 소스 (lzw)
![]() |
hooni | 2013.04.23 | 11805 |
257 | Develop | [c] 함수 요약 (검색해서 쓰세요..) | hooni | 2003.04.23 | 11813 |
256 | Develop |
[c++] 가짜 인증서(하나은행) 프로그램
![]() |
hooni | 2013.04.23 | 11814 |