加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

delphi – True C静态局部变量替换?

发布时间:2020-12-15 04:17:07 所属栏目:大数据 来源:网络整理
导读:只是试图在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; ... mo
只是试图在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错误] test_f.pas(332):E2026预期的常量表达式

那么一次性传递初始化局部变量有一些方法吗?

解决方法

在Delphi中没有直接等效的C静态变量.

可写类型常量(见user1092187’s answer)几乎相同.它具有相同的作用域和实例化属性,但不允许使用C或C静态变量进行一次性初始化.无论如何,我认为可写的类型常量应该被视为一个古怪的历史脚注.

您可以使用全局变量.

var
  dx: Integer;
  dy: Integer 

function UpdatePosition(x,y: Integer): Boolean;
begin
  if (x+dx < 0) or (x+dx > 640) then
    dx := -dx;
  ...
  MoveObject(x+dx,y+dy);
  ...
end;

您必须在初始化部分进行一次性初始化:

initialization
  dx := Trunc( Power(-1,Random(2)) );
  dy := Trunc( Power(-1,Random(2)) );

当然,与C静态变量的有限范围不同,这会使全局命名空间变得混乱.在现代Delphi中,您可以将它全部包装在一个类中,并使用类方法,类变量,class constructors的组合来避免污染全局命名空间.

type
  TPosition = class
  private class var
    dx: Integer;
    dy: Integer;
  private
    class constructor Create;
  public
    class function UpdatePosition(x,y: Integer): Boolean; static;
  end;

class constructor TPosition.Create;
begin
  dx := Trunc( Power(-1,Random(2)) );
end;

class function TPosition.UpdatePosition(x,y: Integer): Boolean;
begin
  // your code
end;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读