真正的C静态局部变量替换?
只是试图在 ObjectPascal/Delphi 中实现 C/C++ 静态局部变量的类似功能。 让我们在 C 中编写以下函数:
bool update_position(int x, int y)
{
static int dx = pow(-1.0, rand() % 2);
static int dy = pow(-1.0, rand() % 2);
if (x+dx < 0 || x+dx > 640)
dx = -dx;
...
move_object(x+dx, y+dy);
...
}
使用类型化常量作为静态变量替换的等效 ObjectPascal 代码无法编译:
function UpdatePosition(x,y: Integer): Boolean;
const
dx: Integer = Trunc( Power(-1, Random(2)) ); // error E2026
dy: Integer = Trunc( Power(-1, Random(2)) );
begin
if (x+dx < 0) or (x+dx > 640) then
dx := -dx;
...
MoveObject(x+dx, y+dy);
...
end;
[DCC Error] test_f.pas(332): E2026 Constant expression Expected
那么有什么办法吗?对于一次性传递初始化的本地变量?
just trying to achieve similar functionality of C/C++ static local variables in ObjectPascal/Delphi.
Let's have a following function in C:
bool update_position(int x, int y)
{
static int dx = pow(-1.0, rand() % 2);
static int dy = pow(-1.0, rand() % 2);
if (x+dx < 0 || x+dx > 640)
dx = -dx;
...
move_object(x+dx, y+dy);
...
}
Equivalent ObjectPascal code using typed constants as a static variable replacement fails to compile:
function UpdatePosition(x,y: Integer): Boolean;
const
dx: Integer = Trunc( Power(-1, Random(2)) ); // error E2026
dy: Integer = Trunc( Power(-1, Random(2)) );
begin
if (x+dx < 0) or (x+dx > 640) then
dx := -dx;
...
MoveObject(x+dx, y+dy);
...
end;
[DCC Error] test_f.pas(332): E2026 Constant expression expected
So is there some way for a one-time pass initialized local variable ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Delphi 中没有与 C 静态变量直接等效的东西。
可写类型常量(请参阅 user1092187 的回答)几乎是等效的。它具有相同的作用域和实例属性,但不允许使用 C 或 C++ 静态变量进行一次性初始化。无论如何,我认为应避免将可写类型常量作为古雅的历史脚注。
您可以使用全局变量。
您必须在
initialization
部分中进行一次性初始化:当然,与 C 静态变量的有限范围不同,这会使全局命名空间变得混乱。在现代 Delphi 中,您可以将其全部包装在一个类中,并使用类方法、类变量、类构造函数以避免污染全局命名空间。
There's no direct equivalent of a C static variable in Delphi.
A writeable typed constant (see user1092187's answer) is almost equivalent. It has the same scoping and instancing properties, but does not allow the one-time initialization that is possible with a C or C++ static variable. In any case it is my opinion that writeable typed constants should be shunned as a quaint historical footnote.
You can use a global variable.
You have to do the one-time initialization in the
initialization
section:Of course this make a mess of the global namespace unlike the limited scope of a C static variable. In modern Delphi you can wrap it all up in a class and use a combination of class methods, class vars, class constructors to avoid polluting the global namespace.
启用“可写类型常量”:
Enable "Writable typed constants":