在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
答案 0 :(得分:39)
当^
用作类型的一部分时(通常在类型或变量声明中),它表示“指向”。
示例:
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));