티스토리 뷰

Delphi

procedure Include(var S: Set; I: Ordinal);

Properties

Type

Visibility

Source

Unit

Parent

procedure

public

System.pas

System

System

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 유형 변수인 경우 IncludeSet에 요소를 추가합니다.

Include (S,I) 표현식은 S := S + [I]에 해당하며, 여기서 SSet 유형 변수이고 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ɑ:-]   영국식 [|kɒrə|spɒnd]   중요

1. 일치하다, 부합하다
2. (~
) 해당하다
3. (~
) 서신을 주고받다

compatible 미국·영국 [kəm|pӕtəbl]   영국식   중요

1. 호환이 되는
2.
양립될 수 있는
3. (
두 사람이 생각흥미 등이 비슷하여) 화합할 수 있는

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
링크
«   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
글 보관함