
delphi--语法基础
hhhfff2010
吾爱优快云,吾更爱delphi,用心开发,用心感悟。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Delphi 函数和过程的参数问题
Delphi 函数和过程的参数问题{默认参数是传值, 不会被改变}function MyF1(x: Integer): Integer;begin Inc(x); Result := x;end;{var参数是传地址,参数会被改变,而且参数只能是变量}function MyF2(var x: Integer): Integer;begin Inc(x); Res转载 2013-02-01 17:00:28 · 803 阅读 · 0 评论 -
Delphi in a Unicode World Part II: New RTL Features and Classes to Support Unicode
Delphi in a Unicode World Part II: New RTL Features and Classes to Support UnicodeBy: Nick HodgesAbstract: This article will cover the new features of the Tiburon Runtime Library that will help ha转载 2013-02-04 11:48:12 · 917 阅读 · 0 评论