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. 展开
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. 展开
2个回答
展开全部
type
arrArray=array of String;
TFenGe=class(Tobject)
public
class function fenGe(str:String;ch:String):arrArray;
end;
这样能编译通过,有什麽问题
arrArray=array of String;
TFenGe=class(Tobject)
public
class function fenGe(str:String;ch:String):arrArray;
end;
这样能编译通过,有什麽问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
type
TFenGe=class(Tobject)
type
arrArray=array of String;
这段定义有问题,应该先把数组类型的定义放前面,然后再定义类TFenGen,TFenGen的类函数应该紧跟类的声明。
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;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询