336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
From Wiktionary:
- (computing) In assembly languages, a loop which contains few instructions and iterates many times.
- (computing) Such a loop which heavily uses I/O or processing resources, failing to adequately share them with other programs running in the operating system.
For case 1 it is probably like
for (unsigned int i = 0; i < 0xffffffff; ++ i) {}
A tight loop is a loop that loops many times and the loop body has few instructions.
'Programming > Etc' 카테고리의 다른 글
Communication between C# and C++ through named pipe (0) | 2015.05.20 |
---|---|
게임 개발 성과 측정 프로젝트 마지막편: 위대한 팀은 어떻게 일하는가? (0) | 2015.04.15 |
HTML5 vs PhoneGap vs Unity3D vs Native (0) | 2015.02.14 |
git update-index --assume-unchanged (0) | 2015.02.10 |
GitHub 를 이용하는 전체 흐름 이해하기 #1 (0) | 2015.02.07 |