티스토리 뷰

Delphi

procedure Continue;

Properties

Type

Visibility

Source

Unit

Parent

procedure

public

System.pas

System

System

Description

Allows the flow of control to proceed to the next iteration of for, while, or repeat statements.

In Delphi code, the Continue procedure causes the flow of control to proceed to the next iteration of the enclosing for, while, or repeat statement.

The compiler reports an error if a call to Continue is not enclosed by a for, while, or repeat statement.

Note: Continue does not violate the flow of control dictated by a try..finally construct.

If a call to Continue causes the control to leave the try clause, the finally clause is entered.

 

for, while 또는 repeat 문을 다음 반복으로 진행하도록 제어 흐름을 허용합니다.

Delphi 코드에서 Continue 프로시저는 컨트롤의 흐름을 에워싸는 for, while 또는 repeat 문 반복의 다음 단계로 진행합니다.

Continue에 대한 호출이 for, while 또는 repeat 문으로 에워싸지 않으면 컴파일러에서 오류를 보고합니다.

참고: Continuetry..finally 구조에 의해 지정된 제어 흐름을 위반하지 않습니다.

Continue를 호출하면 컨트롤이 try 절을 벗어나게 되고, finally 절이 입력됩니다.

 

Example

var

  i: Integer;

 

begin

  // 결과: Test Test 정상 정상 종료

  try

    try

      for i := 0 to 1 do

      begin

        Write('Test ');

 

        Continue;

 

        Exception.Create('Exception 발생!');

 

        while True do

          Write('무한 ');

      end;

 

      for i := 0 to 1 do

        Write('정상 ');

    except

      Write('Exception 무시됨 ');

    end;

  finally

    Write('종료');

    Readln;

  end;

end.

 

allow (allows) 미국·영국 [ə|laʊ  영국식   중요

1. (무엇을 하도록) 허락하다; 용납하다
2. (
무엇을 가지도록) 허락하다
3.
들어오게 하다

enclose 미국식 [ɪn|kloʊz]   영국식 [ɪn|kləʊz]   중요

1. (울타리 등으로) 두르다
2.
에워싸다
3.
동봉하다

clause 미국·영국 [klɔ:z]   영국식   중요

1. (주어와 동사가 갖춰진 문장 구성 성분)
2. (
법적 서류의) 조항, 조목

 

출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.Continue

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함