Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way that I can declare a variable with an absolute address that has some offset to the variable that it refers to. For instance, instead of:

function RefCount(const s: string): Integer;
begin
  Result := PInteger(Integer(s) - 8)^;
end;


is there some way that I can do:

function RefCount(const s: string): Integer;
var
  Count: PInteger absolute s {- 8 ?} ;
begin
  Result := Count^;
end;

(The example is to illustrate only, it is not necessarily useful..)

share|improve this question
1  
I asked the same question on WP:RD/C a few years ago, and the answer I got there was 'no'. And, as far as I know, that really is the answer. – Andreas Rejbrand Dec 16 '11 at 22:29
1  
(By the way, you do know that your first snippet is actually shorter than your last one, right? :) – Andreas Rejbrand Dec 16 '11 at 22:35
1  
What you are basically asking for is the equivilent of VC++'s __based keyword. There is no such feature in Delphi (or C++Builder, for that matter). – Remy Lebeau Dec 17 '11 at 0:26
@Andreas Rejbrand, second one is (or, actually, would be) more declarative than generic pointer arithmetics. – user539484 Dec 17 '11 at 1:51
I'd look for another way to accomplish whatever it is you're actually trying to do. While you might be able to figure out a way to shuffle pointers around, this is a horrible can of worms to open, breaking all kinds of best-practice rules. Perhaps if you gave us a little more context, we might be able to suggest a more appropriate solution. – Ken Pemberton Dec 17 '11 at 9:53
show 3 more comments

2 Answers

up vote 6 down vote accepted

No, I don't think there is an 'extended syntax' of the absolute keyword. The documentation is here, and, as far as I know, there are no undocumented features related to this keyword.

share|improve this answer
Thank you Andreas. While searching on the web what I noticed was 'absolute' isn't being used all that much at all. So I wasn't hoping for much.. – Sertac Akyuz Dec 17 '11 at 0:46
absolute is only for declaring variables that share the same memory address, not for declaring variables that are offset from each other. – Remy Lebeau Dec 17 '11 at 2:50

There is no syntax for what you ask.

What you can do, however, is use pointer arithmetic (if you are using a version that supports it), eg:

function RefCount(const s: string): Integer; 
begin 
  if s <> '' then
    Result := (PInteger(s) - 2)^; 
  else
    Result := 0; 
end; 

A more reliably approach is to use the StrRec record type instead, which is what a String actually contains internally:

function RefCount(const s: string): Integer; 
begin 
  if s <> '' then
    Result := (PStrRec(s) - 1)^.refCnt
  else
    Result := 0;
end; 

Or, the non pointer arithmetic version:

function RefCount(const s: string): Integer; 
begin 
  if s <> '' then
    Result := PStrRec(LongInt(s) - SizeOf(StrRec))^.refCnt
  else
    Result := 0;
end; 

BTW, starting with D2009+, the System unit has its own StringRefCount() function that retreive a String's reference count.

share|improve this answer
Thank you Remy. My question wasn't particularly about reference count, it was just an example. Sorry if my example wasn't so good :). D2007 does not have pointer arithmetic, but I'll keep in mind 'PStrRec' for getting reference count from now on, it seems more correct then what I'm doing now (until I'll get a version that has 'StringRefCount'). – Sertac Akyuz Dec 17 '11 at 0:50
If anybody wants to use 'StrRec', you have to declare the record, because it's in implementation section of 'system.pas'. – Sertac Akyuz Dec 17 '11 at 1:10
In Delphi 2007 and below you can use the Inc and Dec function to do pointer algorithmic. – Johan Dec 17 '11 at 13:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.