如果Ada中的参数处于无模式状态,会发生什么?

之间有什么区别

procedure my_func ( param_1 : in param_type )


procedure my_func ( param_1 : param_type )

我是ada的新手,并且一直在编写大多数程序。该程序将编译并按预期运行。

最佳答案

没有区别-如果没有给出参数模式,则编译器将假定为“in”。

参见从18/3开始的http://www.ada-auth.org/standards/12rm/html/RM-6-1.html行。

-马丁

关于ada - Ada无模式子程序参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17550554/

10-14 17:45