作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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
最佳答案
当 ^
用作类型的一部分(通常在类型或变量声明中)时,它表示“指向”的指针。
示例:
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));
关于delphi - 在德尔福/自由帕斯卡 : is ^ an operator or does it simply denote a pointer type?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9353824/
我是一名优秀的程序员,十分优秀!