在 Delphi/Free Pascal 中: ^ 是一个运算符还是仅仅表示一个指针类型?

问题描述 投票:0回答:1

在 Delphi/Free Pascal 中:

^
是一个运算符还是仅仅表示一个指针类型?

program Project1;

{$APPTYPE CONSOLE}

var
    P: ^Integer;

begin
    New(P);

    P^ := 20;
    writeln(P^); // How do I read this statement aloud? P is a pointer?

    Dispose(P);

    readln;
end.
pointers delphi freepascal dereference
1个回答
41
投票

^
用作类型的一部分(通常在类型或变量声明中)时,它的意思是“指向”的指针。

示例:

type
  PInteger = ^Integer;

^
用作一元后缀运算符时,表示“取消引用该指针”。所以在这种情况下,它的意思是“打印
P
指向的内容”或“打印
P
的目标”。

示例:

var
  i: integer; 
  a: integer;     
  Pi: PInteger;
begin
  i:= 100;
  Pi:= @i;  <<--- Fill pointer to i with the address of i
  a:= Pi^;  <<--- Complicated way of writing (a:= i)
            <<--- Read: Let A be what the pointer_to_i points to
  Pi^:= 200;<<--- Complicated way of writing (i:= 200)
  writeln('i = '+IntToStr(i)+' and a = '+IntToStr(a)); 
© www.soinside.com 2019 - 2024. All rights reserved.