程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> OOP 中的雙刃劍

OOP 中的雙刃劍

編輯:Delphi

前幾天看一份非常有名的商業控件的源碼,發現一個非常有趣的用法:

Integer(xxx) :=aaa;

Tttt(xxx) :=bbb;

細細品味,發現利用這種用法往往可以收到意想不到的效果:

比如:

TTestRec = record
A, B, C: Integer;
end;
TTestCls = class
private
FInner: TTestRec;
FReadOnlyValue: Integer;

function GetNewInner: PTestRec;
public
property Inner: TTestRec read FInner write FInner;
property NewInner: PTestRec read GetNewInner;
property ReadOnlyValue: Integer read FReadOnlyValue;
end;

你會發現,直接的你是改不了 aTestCls.Inner.A 的(編譯時 delphi 直接報錯,因為 Delphi7 中兩個 recode 賦值是 copy memory 而不是簡單的“傳址”!

procedure TForm1.Button1Click(Sender: TObject);
begin
with TTestCls.Create do
try
//Inner.A := 10;
Caption := TButton(Sender).Caption + ' A := ' + IntToStr(Inner.A);
finally
Free;
end;
end;

可是,如果我們知道在訪問這個 Inner 時 Delphi 在編譯直接 FInner 的地址,那麼,結合上面那種有趣的用法:

procedure TForm1.Button3Click(Sender: TObject);
var
p: PInteger;
begin
with TTestCls.Create do
try
p := @(Inner.A);
Integer(p^) := 100;
Caption := TButton(Sender).Caption + ' A := ' + IntToStr(Inner.A);
finally
Free;
end;

更進一步,利用指針竟然可以突破 oo 對 private 的保護:

procedure TForm1.Button4Click(Sender: TObject);
var
p: PInteger;
begin
with TTestCls.Create do
try
p := @(ReadOnlyValue);
Integer(p^) := 1000;
Caption := TButton(Sender).Caption + ' ReadOnlyValue := ' + IntToStr(ReadOnlyValue);

   finally
    Free;
  end;
end;

  至於“踩過界”那更不在話下:

 procedure TForm1.Button5Click(Sender: TObject);
var
  p1, p2: PInteger;
begin
  with TTestCls.Create do
  try
    p1 := @(Inner.A);
    // 內存中 FInner 與 FReadOnlyValue 其實只差 TTestRec 大小個字節
    Integer(p2) := Integer(p1) + SizeOf(TTestRec);
    Integer(p2^) := 100;
    Caption := TButton(Sender).Caption + ' ReadOnlyValue := ' + IntToStr(ReadOnlyValue);
  finally
    Free;
  end;
end;

  當然,指針不但可以破壞 oo,也能使您的代碼更加的 oo: 

   TTestRec = record
    A, B, C: Integer;
  end;
  PTestRec = ^TTestRec;
   TTestCls = class
  private
    FInner: TTestRec;
    FReadOnlyValue: Integer;     function GetNewInner: PTestRec;
  public
    property Inner: TTestRec read FInner write FInner;
    property NewInner: PTestRec read GetNewInner;
    property ReadOnlyValue: Integer read FReadOnlyValue;
  end;
procedure TForm1.Button2Click(Sender: TObject);
begin
  with TTestCls.Create do
  try
    NewInner.A := 10;
    Caption := TButton(Sender).Caption + ' A := ' + IntToStr(Inner.A);
  finally
    Free;
  end;
end;

  看看現實中的非 oo 的代碼:
 
  利用“指針方案”把 Txxx 改成 Pxxx 後竟然對原來的代碼一點影響都沒有,而使之更加的

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved