函数中动态数组调用的问题(15)

  • 主题发起人 主题发起人 flyerer1
  • 开始时间 开始时间
F

flyerer1

Unregistered / Unconfirmed
GUEST, unregistred user!
定义动态数组: p_mulx,p_muly :array of real; 定义一个带动态数组的函数 Function GodLine(x,y: array of double):boolean; 在按钮事件中:procedure TForm1.Button21Click(Sender: TObject);begin SetLength(p_mulx,p_row); SetLength(p_muly,p_row); FitLine(p_mulx,p_muly);end;编译不能通过
 
怎么是 FitLine(p_mulx,p_muly);不是定义的 GodLine(x,y: array of double):boolean; 么?
 
问题解决了
 

Similar threads

后退
顶部