Delphi自定义函数声明及调用问题!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi自定义函数声明及调用问题!相关的知识,希望对你有一定的参考价值。
private
Private declarations
public
Public declarations
pubEmpNo,pubEmpName:string;
procedure CopyDbDataToExcel(Target: TDbgrid);
Function Get_item_list(tbname, fdname: String; alist: TStrings): Boolean; // 在这里声明的话出错!
end;
var
frm_main: Tfrm_main;
Function Get_item_list(tbname, fdname: String; alist: TStrings): Boolean;//在这里声明不出错,但函数功能实现不了!
implementation
函数如下:
Function Get_item_list(tbname, fdname: String; alist: TStrings): Boolean;
Begin
alist.BeginUpdate;
alist.Clear;
Try
Try
With TADOQuery.Create(Nil) Do
Begin
Try
Close;
LockType := ltReadOnly;
Connection := DM.AdoConn;
Sql.Clear;
//SQL.Add(Format('select %s from %s where %s is not null', [fdname, tbname, fdname]));
SQL.Add(Format('select %s from %s', [fdname, tbname]));
Open;
While Not Eof Do
Begin
alist.Add(FieldByName(fdname).AsString);
Next;
End;
Close;
Finally
Free;
End;
End;
Except On E: Exception Do
Begin
Application.MessageBox(PChar(E.Message), 'msg', 64);
End;
End;
Finally
alist.EndUpdate;
End;
End;
请教各位大侠这是怎么回事?顺便问下,自定义一个其他单元可以调用的函数究竟应该怎样声明?
调用代码如下:
uni_main.Get_item_list('tb资料设置_客户', '所属省份',quprovince.Items );
一、按一般的情况,公共函数放到窗体外的单元文件Pas文件内声明。如下代码正确:
var
frm_main: Tfrm_main;
Function Get_item_list(tbname, fdname: String; alist: TStrings): Boolean;//在这里声明不出错,但函数功能实现不了!
然后实现代码也没错。
最后调用时分两种情况:
1,在别的单元文件内的其他窗体内调用。需要在其他单元文件内implementation关键字后加上引用该单元文件:uses uni_main;然后在使用的地方直接Get_item_list('tb资料设置_客户', '所属省份',quprovince.Items );并不需要加uni_main.因为他在窗体对象之外声明,是公共函数。引用了该单元文件后,这个调用能够找到该函数声明和实现。
2,在本单元文件内调用。这样简单。只需要一步。直接Get_item_list('tb资料设置_客户', '所属省份',quprovince.Items );并不需要加uni_main.这个引用。因为这个自定义函数不属于窗体对象。
二、按特殊情况,这个自定义函数要放到窗体内部。那么,声明用:
public
Public declarations
pubEmpNo,pubEmpName:string;
procedure CopyDbDataToExcel(Target: TDbgrid);
Function Get_item_list(tbname, fdname: String; alist: TStrings): Boolean; // 在这里声明的话出错!
end;
这个也没错。但是函数体的实现部分应该是加上uni_main.这个引用。注意下列代码的函数头部分加上该引用(其他地方不变):
函数如下:
Function uni_main.Get_item_list(tbname, fdname: String; alist: TStrings): Boolean;
Begin
alist.BeginUpdate;
alist.Clear;
Try
Try
With TADOQuery.Create(Nil) Do
Begin
Try
Close;
LockType := ltReadOnly;
Connection := DM.AdoConn;
Sql.Clear;
//SQL.Add(Format('select %s from %s where %s is not null', [fdname, tbname, fdname]));
SQL.Add(Format('select %s from %s', [fdname, tbname]));
Open;
While Not Eof Do
Begin
alist.Add(FieldByName(fdname).AsString);
Next;
End;
Close;
Finally
Free;
End;
End;
Except On E: Exception Do
Begin
Application.MessageBox(PChar(E.Message), 'msg', 64);
End;
End;
Finally
alist.EndUpdate;
End;
End;
如果在另一个单元文件调用的时候,注意在另一个单元文件的implementation关键字后同样uses uni_main;然后调用时候也要加上(uni_main包含窗体名字).Get_item_list(参数1,。。。。);这样你编译就会通过了。追问
高手,可能是我基础太差了,对着你的答案研究了半天也没搞懂啊!老是提示“函数未声明”,把那声明放type,private,public,var后面,四个地方都是提示“函数未声明!
参考技术A 如果你想在其它单元也使用这个函数的话就在Public内定义
Public
Function Get_item_list(tbname, fdname: String; alist: TStrings): Boolean;
然后在implementation下写实现的代码就可以了!
其它单元调用之前先uses一下!
C# 构造函数 定义,特征,声明及调用
定义:用来初始化数据的函数
特征:声明一个与所在类同名的方法,无返回类型
构造函数可以进行重载,跟普通函数一样的规则
声明构造函数
public class MyClass
public MyClass()
Console.WriteLine("MyClass的构造函数被调用了");
调用构造方法(new一个对象)
MyClass my1 = new MyClass();
如果自己不写构造函数时,编译器会提供一个默认的无参构造函数
以上是关于Delphi自定义函数声明及调用问题!的主要内容,如果未能解决你的问题,请参考以下文章
delphi如何在一个function自定义函数中调用procedure中的私有变量?