如何在Fortran中声明私有函数?
这仅适用于Fortran 90模块.在模块声明中,您可以使用"public"和"private"关键字为变量和例程列表指定访问限制.我通常发现最初使用private关键字很有帮助,它指定模块中的所有内容都是私有的,除非明确标记为public.
在下面的代码示例中,子例程_1()和function_1()可以通过必需的"use"语句从模块外部访问,但任何其他变量/子例程/函数都是私有的.
module so_example implicit none private public :: subroutine_1 public :: function_1 contains ! Implementation of subroutines and functions goes here end module so_example