Results for break translation from Korean to English

Human contributions

From professional translators, enterprises, web pages and freely available translation repositories.

Add a translation

Korean

English

Info

Korean

break.

English

these lists are neither exhaustive or complete.

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

page break

English

page break

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Korean

break 는 for 나, while, switch 에서 빠져 나가는 명령이다.

English

control structures

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

break 에는 숫자 옵션을 줄 수 있는데, 이것은 한번에 빠져 나갈 제어 구조의 수를 의미한다.

English

break accepts an optional numeric argument which tells it how many nested enclosing structures are to be broken out of.

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

continue 도 숫자 옵션을 줄 수 있는데, 이것도 break 에서와 같이 한번에 처음으로 갈 제어 구조의 수를 의미한다.

English

continue accepts an optional numeric argument which tells it how many levels of enclosing loops it should skip to the end of.

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

str 문자열을 width 매개변수의 지정된 길이만큼(선택적) 랩핑한다. 줄은 break 매개변수(선택적)에 의해 분리된다.

English

returns a string with str wrapped at the column number specified by the (optional) width parameter.

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

switch 문은 문장 단위로 실행된다. switch 에 있는 평가식과 일치하는 case 문을 찾아 그 이후부터 switch 블럭이 끝날 때의 모든 문장을 실행한다. 따라서 원하는 경우 break 로 실행을 중지시킬 필요가 있다. 다음 예를 보자.:

English

it is important to understand how the switch statement is executed in order to avoid mistakes.

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

각 평가식은 비워둘 수 있다. expr2 가 비어있으면 무한 루프를 뜻한다. (php는 c와 같이 비어있으면 true 로 인식한다.) 이건 별로 좋은 방법이 아니지만, 종종 이렇게 사용하고 break 를 사용하여 종료하는 방법도 있다.

English

this may not be as useless as you might think, since often you 'd want to end the loop using a conditional break statement instead of using the for truth expression.

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Korean

advanced c users may be familiar with a different usage of the do..while loop, to allow stopping execution in the middle of code blocks, by encapsulating them with do..while (0), and using the break statement. the following code fragment demonstrates this:

English

do {if ($i 5) {print "i is not big enough"; break;} $i *= $factor; if ($i $minimum_limit) {break;} print "i is ok"; ...process i...} while(0);

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Warning: Contains invisible HTML formatting

Get a better translation with
7,781,524,792 human contributions

Users are now asking for help:



We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. Learn more. OK