p137137 发表于 2017-2-10 13:52:50

求解CALL LIB$ESTABLISH是一个什么意思

求解CALL LIB$ESTABLISH是一个什么意思

fcode 发表于 2017-2-10 20:06:51

调用 LIB$ESTABLISH 这个函数。
本来 $ 不能作为函数名的一部分,但是有些编译器允许这样。

此时,$ 只是名字的一部分,并没有其他特殊含义。你可以认为和 call Lib_Establish() 是差不多的意思

pasuka 发表于 2017-2-11 09:52:10

参考下面的链接
http://www-01.ibm.com/support/docview.wss?uid=swg21187892
Some non-XL Fortran compilers interpret dollar ($) syntax as an alternate return specifier. XL Fortran interprets dollar syntax as part of a variable name, so that XL Fortran treats "$123" as a variable name. Both interpretations of dollar syntax are not standards compliant.
页: [1]
查看完整版本: 求解CALL LIB$ESTABLISH是一个什么意思