![]() |
Delphi-Version: XE3
Pointer auf generischen Record
Nichtgenerisch kein Problem,
Delphi-Quellcode:
type
PMyRecord = ^TMyRecord; TMyRecord = record ... end;
Delphi-Quellcode:
aber generisch will der Compiler nicht.
type
TMyRecord = record public type PMyRecord = ^TMyRecord; public ... end;
Delphi-Quellcode:
type
PMyRecord<T> = ^TMyRecord<T>; TMyRecord<T> = record ... end;
Delphi-Quellcode:
Leider brauch ich einen passenden typisierten Pointer. :cry:
type
TMyRecord<T> = record public type PMyRecord = ^TMyRecord<T>; public ... end; |
AW: Pointer auf generischen Record
Hilft Dir das weiter ?
Delphi-Quellcode:
type TStatic<T> = class public type TRec = record a : T; end; PRec = ^TRec; public class function RecPTR : PRec; static; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:19 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz