Contents

Views 77976 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
랜덤함수 사용시..

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
No. Category Subject Author Date Views
231 Develop [c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스 file hooni 2003.04.23 11328
230 Develop [c] 그래픽 차트 라이브러리.. 나중에 확인 해볼 거.. file hooni 2013.04.23 9292
229 Develop [c] 구조체의 설명과 예제.. hooni 2003.04.23 9308
228 Develop [c] 구조체/파일 입출력 프로그램 file hooni 2003.04.23 8167
227 Develop [c] 구조체 배열 예제 (학생 성적 계산) file hooni 2013.04.23 8534
226 Develop [c] 구구단 최단라인 ㅡㅡ; file hooni 2013.04.23 9226
225 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 8676
224 Develop [c] 공용체를 이용해 MSB를 LSB로 변환 file hooni 2013.04.23 10090
223 Develop [c] 격자 직사각형 넓이 구하기 file hooni 2013.04.23 8686
222 Develop [c] 게임 AI FSM 테스트 샘플 소스.. 꽤 괜찮은 소스.. file hooni 2013.04.23 8248
221 Develop [c] 거리와 각도를 입력받아서 좌표로 변환 file hooni 2013.04.23 11454
220 Develop [c] 간단한 채팅(클라이언트/서버) 프로그램 소스 file hooni 2003.04.23 10403
Board Pagination Prev 1 ... 47 48 49 50 51 52 53 54 55 56 ... 71 Next
/ 71