![]() |
array of pointers
hi there, i want to make an array of pointers as follows
Delphi-Quellcode:
what i want to do, is to store a pointer to each variable imported to procedure
type pointer_array=array[0..50] of pointer;
var Pointers:pointer_array; procedure HandleInput(Message1:string; var ExportVar:real); begin inc(Step_input); Pointers[Step_input]:=ExportVar; //DONT WORK Pointers[Step_input]:=^ExportVar; //DONT WORK ^Pointers[Step_input]:=^ExportVar; //DONT WORK //unimportant commands here end; (HandleInput('0', CXC)-> ExportVar=CXC -> i will store a pointer to CXC) how to do it? thanks |
Re: array of pointers
You need the address of a variable, which you'll store in a Pointer. To get the Address of a Variable, use the @-Operator.
In your case it would be then:
Delphi-Quellcode:
greetz
Pointers[Step_input] := @ExportVar
Mike |
Re: array of pointers
great:))
and now when i will to get the value of the variable on what it shows
Delphi-Quellcode:
ExportVar:=10;
Pointers[Step_input] := @ExportVar; how do i get the value 10 from Pointers[Step_input] |
Re: array of pointers
Delphi-Quellcode:
i tried to make this, but it isnt working (@adr:=Pointers[i1]; - cannot assign left side)
procedure HandleInput(Message1:string; var ExportVar:real);
var i1:integer; adr:real; begin Pointers[Step_input]:=@ExportVar; @adr:=Pointers[i1]; ShowMessage(FloatToStr(adr)); end; |
Re: array of pointers
You have to dereference the Pointer. This usually works like this:
Delphi-Quellcode:
But, since you're not using typed Pointers, you have to tell, that this is an integer, so a simle cast is enaugh:
IntegerValue := PointerToInteger^
Delphi-Quellcode:
btw, code is always easier to read, if you use typed Pointers (means: ^integer instead of Pointer), so if you intend to store only one Datatype in those Pointers, youse typed Pointers ;)
IntegerValue := Integer(Pointers[Step_input]^)
greetz Mike |
Re: array of pointers
Dankeshon, its working fine, thanks:)
|
Re: array of pointers
well but there is a problem
![]() the adress of ExportVar and Ratio is the same, thats OK but why is the value of tmpr not same as the value of Ratio=ExportVar (the value of tmpr is 0 and the value of Ratio is 1,58 )? |
Re: array of pointers
Zitat:
As short answer: the variable temp has the value 0, because the value has not been assigned for optimation reasons. There are two ways to avoid this:
greetz Mike |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:02 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