티스토리 뷰
Delphi
procedure Continue;
Properties
Type |
Visibility |
Source |
Unit |
Parent |
procedure |
public |
System.pas |
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 문으로 에워싸지 않으면 컴파일러에서 오류를 보고합니다.
참고: Continue는 try..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. (무엇을 하도록) 허락하다; 용납하다 enclose 미국식 [ɪn|kloʊz] 1. (담・울타리 등으로) 두르다 clause 미국·영국 [klɔ:z] 1. 절(주어와 동사가 갖춰진 문장 구성
성분) |
출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.Continue
'프로그래밍 언어 > Delphi' 카테고리의 다른 글
[Reference] System.SysUtils.CompareText (0) | 2017.03.31 |
---|---|
[Reference] System.SysUtils.DeleteFile (0) | 2017.03.30 |
[Reference] System.SysUtils.IntToHex (0) | 2017.03.29 |
[Reference] System.SysUtils.Date (0) | 2017.03.27 |
[Reference] System.Addr (0) | 2017.03.26 |
- Total
- Today
- Yesterday
- 대상
- 상황
- System
- 작문
- VCL
- 독해
- 여행영어 100일의 기적
- 응용
- 왕초보 영어회화 100일의 기적
- 정렬
- Reference
- 설명
- 문법
- Pte
- tdataset
- wfd
- 계산기
- 일기
- Delphi
- 영어
- ADODB
- RA
- SWT
- 자료구조
- 알고리즘
- 말하기
- 교육센터
- SysUtils
- 스택
- java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |