User Tools

Site Tools


tutorial:genericandtemplate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
tutorial:genericandtemplate [2018/12/23 22:58]
admin
tutorial:genericandtemplate [2018/12/23 23:15]
admin
Line 50: Line 50:
 \\ \\
  
 +**__หมายเหตุ__** - Generic Function ปัจจุบันสามารถใช้ได้เฉพาะ Lazarus เวอร์ชั่น Trunk (สำหรับ Developer) เท่านั้น ยังไม่สามารถใช้ได้กับเวอร์ชั่นทั่วไป
  
 =====2. Generic Class===== =====2. Generic Class=====
-คือการสร้าง Class ที่ใช้กับ DataType ใดๆก็ได้ ไม่เฉพาะเจาะจง+คือการสร้าง Class ที่ใช้กับ DataType ใดๆก็ได้ ไม่เฉพาะเจาะจง ​คล้ายกับ Generic Procedure/​Function แต่เปลี่ยนเป็น Class เท่านั้น แต่สำหรับ Generic Class นั้น ก่อนการนำไปใช้ จะต้องมีการสร้าง Class เป้าหมาย ขึ้นมาก่อนเสมอ รูปแบบของการประกาศและการสร้าง Class สรุปได้ดังนี้ 
 + 
 +^  Topic  ^  Format ​ ^  
 +|การประกาศ Generic Class|<​sxh delphi;>​ 
 +type 
 +  generic TList<​T>​ = class 
 +    Items: array of T; 
 +    procedure Add(Value: T); 
 +  end; 
 +</​sxh>​ | 
 +|การสร้าง Class จาก Generic Class|<​sxh delphi;>​ 
 +Type   
 +  TIntegerList = specialize TList<​Integer>;​ 
 +  TPointerList = specialize TList<​Pointer>;​ 
 +  TStringList = specialize TList<​string>;​ 
 +</​sxh>​ |
tutorial/genericandtemplate.txt · Last modified: 2018/12/23 23:16 by admin