borland工程师如何保证父类(TStream)的两个overload的seek,至少

ezioooooo

ezioooooo

2016-02-19 18:25

有了下面这个borland工程师如何保证父类(TStream)的两个overload的seek,至少教程,不懂borland工程师如何保证父类(TStream)的两个overload的seek,至少的也能装懂了,赶紧get起来装逼一下吧!
 

  TStream 使用了下面的代码,强制子类必须implement两个seek方法中至少一个
  

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)

  classes.pas 单元4904行@Delphi7

  首先说明TStream有两个seek方法

  function Seek(OffsetLongintOriginWord): Longintoverloadvirtual; //叫它seek1
  function Seek(const OffsetInt64OriginTSeekOrigin): Int64overloadvirtual;//叫它seek2
  

  看看如何实现的

  function TStream.Seek(OffsetLongintOriginWord): Longint;
  
    procedure RaiseException;
    begin
      raise EStreamError.CreateResFmt(@sSeekNotImplemented, [Classname]);
    end;
  
  type 

     //声明了一个seek2样式的函数类型
    TSeek64 = function (const OffsetInt64OriginTSeekOrigin): Int64 of object;
  var 

     //impl是子类的seek2方法,Base是TStream的seek2方法

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)

    ImplTSeek64;
    BaseTSeek64;
    ClassTStreamTClass;
  begin
  { Deflect 32 seek requests to the 64 bit seek, if 64 bit is implemented.
    No existing TStream classes should call this method, since it was originally
    abstract.  Descendent classes MUST implement at least one of either
    the 32 bit or the 64 bit version, and must not call the inherited
    default implementation. } 

  //如果进入此函数,说seek1没有被override,下面的任务就是验证seek2必须被override;
    Impl := Seek; //如果子类没有实现seek,那么impl就是seek2的方法(庐山中?)

  //下面将ClassTStream将会是TStream的class类型,同时保证当前类是TStream的子类
    ClassTStream := Self.ClassType;
    while (ClassTStream  niland (ClassTStream  TStreamdo
      ClassTStream := ClassTStream.ClassParent;
    if ClassTStream = nil then RaiseException

  //Base为TStream的seek2方法,这句的语法最有意思
    Base := TStream(@ClassTStream).Seek

  //开始了,如果当前类的seek2方法和TStream的seek2方法代码相同,那么异常之
    if TMethod(Impl).Code = TMethod(Base).Code then
      RaiseException;

  //能执行到这里,表明seek2已经被override了,调用子类实现的seek2方法 
    Result := Seek(Int64(Offset), TSeekOrigin(Origin));
  end;

  function TStream.Seek(const OffsetInt64OriginTSeekOrigin): Int64;
  begin
  { Default implementation of 64 bit seek is to deflect to existing 32 bit seek.
    Descendents that override 64 bit seek must not call this default implementation. } 

  //这里就好解释了,如果执行到这个方法,那么说明本seek2未被override;,那么seek1一定被override了,就调用seek1.
    if (Offset  Low(Longint)) or (Offset  High(Longint)) then
      raise ERangeError.CreateRes(@SRangeError);
    Result := Seek(Longint(Offset), Ord(Origin));
  end;

  我刚开始看到 时候,还说怎么回事,两个overload的函数互相调用,没有具体代码,原来是要求子类必须实现其中一个,borland的工程师确实很牛!!!
  

展开更多 50%)
分享

猜你喜欢

borland工程师如何保证父类(TStream)的两个overload的seek,至少

编程语言 网络编程
borland工程师如何保证父类(TStream)的两个overload的seek,至少

HP工程师经验分享(42)

Linux Linux命令 Linux安装 Linux编程 Linux桌面 Linux软件 Linux内核 Linux管理
HP工程师经验分享(42)

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

HP工程师经验分享(46)

Linux Linux命令 Linux安装 Linux编程 Linux桌面 Linux软件 Linux内核 Linux管理
HP工程师经验分享(46)

HP工程师经验分享(25)

Linux Linux命令 Linux安装 Linux编程 Linux桌面 Linux软件 Linux内核 Linux管理
HP工程师经验分享(25)

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

HP工程师经验分享(14)

Linux Linux命令 Linux安装 Linux编程 Linux桌面 Linux软件 Linux内核 Linux管理
HP工程师经验分享(14)

HP工程师经验分享(12)

Linux Linux命令 Linux安装 Linux编程 Linux桌面 Linux软件 Linux内核 Linux管理
HP工程师经验分享(12)

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

[PB+Delphi]主应用程序用的是PB操作界面调用Delphi开发的DLL

[PB+Delphi]主应用程序用的是PB操作界面调用Delphi开发的DLL

如何使程序在运行时自动注册ActiveX控件

如何使程序在运行时自动注册ActiveX控件
下拉加载更多内容 ↓