Fortran 90 中的例程名称最大长度
有谁知道 Fortran 90 中例程名称和变量名称是否有最大长度?
Does anyone know if there is a maximum length for routine names and variable names in Fortran 90?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,Fortran 标准定义了事物名称的最大长度,包括例程和变量。在 Fortran 90/95 中,最大长度为 31 个字符,在 Fortran 2003 中,现在为 63 个字符。在早期版本中,它只有 6 个字符。您的编译器可能允许(非标准)更长的名称。
Yes, the Fortran standards define a maximum length for names of things, including both routines and variables. In Fortran 90/95 the maximum length was 31 characters, in Fortran 2003 it is now 63 characters. In earlier versions it was as short as 6 characters. Your compiler may allow (non-standard) longer names.