±ÍÇÏ´Â ¼Õ´Ô À̽ʴϴÙ
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ
  
  µ¨¸¶´ç °ø½Ä ÀºÇà°èÁÂ
  ÇϳªÀºÇà 227-910235-83607
  ¿¹±ÝÁÖ ÀÌ»ó±¹(¿î¿µÁø)
ÇÁ·ÎÁ§Æ® °Ô½ÃÆÇ
ÅõÇ¥°Ô½ÃÆÇ
µ¨¸¶´ç¼Ò°³
±âÃʺÎÅÍ È°¿ë±îÁö! µ¨ÆÄÀÌ ±³À° - µ¥ºê±â¾î
°­ÁÂ, ÆÁ, Á¤º¸ °­ÁÂ, ÆÁ, Á¤º¸ ÀÔ´Ï´Ù.
±Û³»¿ë - °­ÁÂ, ÆÁ, Á¤º¸
 XE7 º¯°æ»çÇ× - µ¿Àû¹è¿­À» ¹®ÀÚ¿­ ¹æ½ÄÀ¸·Î Ãß°¡/»èÁ¦
¹ø°³
(¼­Å¿í)
2015-02-12 ¿ÀÀü 9:24:18
Ä«Å×°í¸®: ±âŸ
4616ȸ Á¶È¸



µî·ÏµÈ ÆÄÀÏÀÌ ¾ø½À´Ï´Ù.
XE7¿¡¼­ ´«¿¡ ¶ç´Â »çÇ×Àº ºí·çÅõ½º, ´ÙÁ߸ð´ÏÅÍ, ¸ÖƼÄھ´·Äó¸®(½º·¹µå´ëü), µ¿Àû¹è¿­Ã³¸®³×¿ä.

µ¿Àû¹è¿­¿¡¼­ Ç×»ó SetLength ½Å°æ½è´Âµ¥ °£ÆíÇϳ׿ä.

For example: 

var
  A: array of integer;
  B: TBytes = [1,2,3,4]; //Initialization can be done from declaration
begin
  ...
  A := [1,2,3]; // assignation using constant array
  A := A + [4, 5]; // addition - A will become [1,2,3,4,5]
  ...
end;

String-like support routines added: 
1. The Insert function inserts a dynamic array at the beginning at the position index.
   It returns the modified array. 

var
  A: array of integer;
begin
  ...
  A := [1,2,3,4];
  Insert(5, A, 2); // A will become [1,2,5,3,4] 
  ...
end;

2. The Delete function eliminates elements from a dynamic array and returns the modifed array: 

var
  A: array of integer;
begin
  ...
  A := [1,2,3,4];
  Delete(A, 1, 2); // A will become [1,4]
  ...
end;

3. The Concat function can be used to put together two different dynamic arrays: 

  A := Concat( [1,2,3], [4,5,6] ); // A will become [1,2,3,4,5,6]