• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

《Delphi算法与数据结构》学习与感悟[4]:关于const

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
如果参数在函数中不可能修改, 一定要使用 const;

不然, 编译器就会:
假定先修改, 先要备份; 使用前后要增减引用计数; 还要套上 try finally.

指定了 const 就可以避免以上过程从而提高效率.

测试效果图:


unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

//判断一个字符串中数字的个数
function GetNum1(str: string): Integer;
var
  i: Integer;
begin
  Result := 0;
  for i := 1 to Length(str) do
    if str[i] in ['0'..'9'] then Inc(Result);
end;

//同样的函数只是给参数加上 const 
function GetNum2(const str: string): Integer;
var
  i: Integer;
begin
  Result := 0;
  for i := 1 to Length(str) do
    if str[i] in ['0'..'9'] then Inc(Result);
end;

{对比测试}
procedure TForm1.Button1Click(Sender: TObject);
var
  s: string;
  n: Cardinal;
  i: Integer;
begin
  s := 'ABC123';

  n := GetTickCount;
  for i := 0 to 1000000 do GetNum1(s);
  n := GetTickCount - n;
  Text := IntToStr(n) + ' - ';

  n := GetTickCount;
  for i := 0 to 1000000 do GetNum2(s);
  n := GetTickCount - n;
  Text := Text + IntToStr(n);    
end;

end.


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap