gpt4 book ai didi

function - 无法在progress4gl上使用函数

转载 作者:行者123 更新时间:2023-12-02 22:15:49 27 4
gpt4 key购买 nike

我一直在尝试创建一个简单的函数,它会积累一些字符串,然后我会调用它并返回它,但由于某种原因我得到:

Could not understand line 1 (198)

这太模糊了,我一直在论坛中寻找示例来比较我的,但似乎没问题,有人可以向我解释一下我可能做错了什么吗?

代码:

put unformatted fcustomer(). /*line one*/

function fcustomer returns char():

define variable vgatherer as character.
define variable i as integer no-undo.

do i = 1 to 10:
assign vgatherer = vgatherer + "thing(s)".
end.

return vgatherer.

end function.

最佳答案

函数需要在使用前声明或前向声明。

您可能还想要一个输入参数。

function fcustomer returns character ( input p1 as character ) forward.

put unformatted fcustomer( "some text" ). /*line one*/

function fcustomer returns character ( input p1 as character ):

define variable vgatherer as character.
define variable i as integer no-undo.

do i = 1 to 10:
assign vgatherer = vgatherer + p1.
end.

return vgatherer.

end function.

关于function - 无法在progress4gl上使用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35560698/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com