例如我有两个单元
{a.dcu}
unit a;
interface
type
a1=class
...
...
function a12b1:b1;
end;
......
{b.dcu}
unit b;
interface
type
b1=class
...
...
function b12a1:a1;
end;
这时候两个单元要互相引用 假如将uses放到implementation前面的函数申明就会报unidenfine type “a1”或unidenfine type “b1” 这应该怎样搞啊
{a.dcu}
unit a;
interface
type
a1=class
...
...
function a12b1:b1;
end;
......
{b.dcu}
unit b;
interface
type
b1=class
...
...
function b12a1:a1;
end;
这时候两个单元要互相引用 假如将uses放到implementation前面的函数申明就会报unidenfine type “a1”或unidenfine type “b1” 这应该怎样搞啊
