티스토리 뷰
Delphi
procedure Include(var S: Set; I: Ordinal);
Properties
Type |
Visibility |
Source |
Unit |
Parent |
procedure |
public |
System.pas |
Description
Adds an element to a Delphi set.
When the first argument of Include is a set type variable, Include adds an element to the set. The Include(S,I) expression corresponds to S := S + [I], where S is a set type variable and I is an expression of a type compatible with the base type of S.
The Include procedure generates more efficient code than would have been obtained by using the plus (+) operator.
Delphi Set에 요소를 추가합니다.
Include의 첫 번째 인수가 Set 유형 변수인 경우 Include는 Set에 요소를 추가합니다.
Include (S,I) 표현식은 S := S + [I]에 해당하며, 여기서 S는 Set 유형 변수이고 I는 기본 유형 S와 호환되는 표현식입니다.
Include 프로시저는 더하기 (+) 연산자를 사용하여 얻은 것보다 효율적인 코드를 생성합니다.
Example
var TmpSet: set of 0..255; Num: Integer;
begin TmpSet := [5, 1, 3, 7, 9];
// 결과: 13579 for Num in TmpSet do Write(Num);
Include(TmpSet, 2); Writeln;
// 결과: 123579 for Num in TmpSet do Write(Num);
Readln; end. |
correspond 미국식 [|kɔ:rə|spɑ:nd;|kɑ:-] 1. 일치하다, 부합하다 compatible 미국·영국 [kəm|pӕtəbl] 1. 호환이 되는 efficient 미국·영국 [ɪ|fɪʃnt] 능률적인, 유능한; 효율적인 |
출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.Include
'프로그래밍 언어 > Delphi' 카테고리의 다른 글
[Reference] System.Int (0) | 2017.03.21 |
---|---|
[Reference] System.SysUtils.ExtractFileName (0) | 2017.03.20 |
[Reference] System.Sqrt (0) | 2017.03.18 |
[Reference] System.RmDir (0) | 2017.03.17 |
[Reference] System.SysUtils.FindFirst (0) | 2017.03.16 |
- Total
- Today
- Yesterday
- 여행영어 100일의 기적
- VCL
- 왕초보 영어회화 100일의 기적
- 스택
- 정렬
- System
- 응용
- SWT
- RA
- 문법
- ADODB
- 대상
- java
- 말하기
- tdataset
- 일기
- Reference
- SysUtils
- 계산기
- 자료구조
- 독해
- Pte
- 알고리즘
- 작문
- 상황
- wfd
- 교육센터
- Delphi
- 설명
- 영어
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |