delphi 类实例化出问题,以下代码无法实例化,求解 5

typeTFenGe=class(Tobject)typearrArray=arrayofString;publicfunctionfenGe(str:String;ch... type
TFenGe=class(Tobject)
type
arrArray=array of String;
public
function fenGe(str:String;ch:String):arrArray;
end;
源码:
unit FenGe;
interface
type
TFenGe=class(Tobject)
type
arrArray=array of String;
public
function fenGe(str:String;ch:String):arrArray;
end;

implementation
{ TFenGe }
function TFenGe.fenGe(str, ch: String): arrArray;
var
temp:String;
i:integer;
begin
temp:=str;
i:=pos(temp,ch);
while i<>0 do
if i<>0 then
begin
setLength(Result,length(Result)+1);
Result[length(Result)-1]:=copy(temp,0,i-1);
delete(temp,0,i);
i:=pos(temp,ch);
end;
setLength(Result,length(Result)+1);
Result[length(Result)-1]:=temp;
end;

end.
展开
 我来答
百度网友0951d78
2013-01-15 · TA获得超过1451个赞
知道小有建树答主
回答量:1727
采纳率:0%
帮助的人:1272万
展开全部
type
arrArray=array of String;
TFenGe=class(Tobject)
public
class function fenGe(str:String;ch:String):arrArray;
end;

这样能编译通过,有什麽问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
herrwm
2013-01-14 · TA获得超过2595个赞
知道小有建树答主
回答量:1751
采纳率:0%
帮助的人:717万
展开全部
type
TFenGe=class(Tobject)
type
arrArray=array of String;
这段定义有问题,应该先把数组类型的定义放前面,然后再定义类TFenGen,TFenGen的类函数应该紧跟类的声明。
更多追问追答
追问
不行啊。改成:
type
arrArray=array of String;
TFenGe=class(Tobject)
function fenGe(str:String;ch:String):arrArray;
end;
错误提示:
E2010 Incompatible types: 'Dynamic array' and 'arrArray'
追答
type
arrArray=array of String;
TFenGe=class(Tobject)
function fenGe(str:String;ch:String):arrArray;
end;
应该为
type
arrArray=array of String;
type
TFenGe=class(Tobject)
function fenGe(str:String;ch:String):arrArray;
end;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式