mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 09:19:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			947 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			947 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program GenericExamples;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
// generics
 | 
						|
type
 | 
						|
  generic TArr<T> = array[0..2] of T;
 | 
						|
  generic TProc<T> = procedure(Arg: T);
 | 
						|
  generic TRecG<T> = record
 | 
						|
    F: T;
 | 
						|
  end;
 | 
						|
  TGenericArray<T> = array of T;
 | 
						|
  IGenericInterface<T> = interface
 | 
						|
    function DoSomething(Arg: T): T;
 | 
						|
  end;
 | 
						|
  TGenericClass<T1,T2> = class(TInterfacedObject, IGenericInterface<T1>)
 | 
						|
    F: T2;
 | 
						|
    type
 | 
						|
      Intf = IGenericInterface<Integer>;
 | 
						|
    function DoSomething(Arg: T1): T2;
 | 
						|
    function Test(Arg: Intf): Intf;
 | 
						|
  end;
 | 
						|
 | 
						|
  generic TGen<_T> = class
 | 
						|
  public
 | 
						|
    type
 | 
						|
      T_TArray = array of _T;
 | 
						|
  private
 | 
						|
    var
 | 
						|
      w: T_TArray;
 | 
						|
  public
 | 
						|
    constructor Create(Value: _T);
 | 
						|
  end;
 | 
						|
 | 
						|
const
 | 
						|
  RecLongInt: TRecG<longint> = (F:0);
 | 
						|
 | 
						|
var
 | 
						|
  ArraySpecialize: TGenericArray<Integer>;
 | 
						|
  ClassSpecialize: TGenericClass<Integer,String>;
 | 
						|
 | 
						|
function TGenericClass.DoSomething(Arg: T1): T2;
 | 
						|
begin
 | 
						|
 | 
						|
end;
 | 
						|
 | 
						|
begin
 | 
						|
  FooInt := TGenericClass<Integer,String>.Create;
 | 
						|
end.
 | 
						|
 |