1、 external 用来声明自定义函数 2、 intrinsic 用来声明库函数 3、 intent(in) 指定参数为只读,不能改变值 4、 intent(out) 指定参数在程序中应重新设置数值。新年新诗会 5、 intent(inout) 参数既可读又可写 6、interface 使用接口 | 当函数名称当成参数传递出去时,这两个声明不可以省略;如果纯粹氢函数拿来讲算使用,不把它当成参数传递出去,声明者自定义函数可以省略EXTERNAL,声明库函数的一行都可以完全省略。 注:在一般情况下,使用函数时不需要特别说明它们的“使用接口”,不过在下面这些情况下是必要的: (1) 函数返回值为数组时 (2) 指定参数位置来传递参数时 (3) 所调用的函数参数数目不固定时 (4) 输入指标参数时 (5) 函数返回值为指针时 |
7、random函数 | 注: 使用随机数前要先调用random_ed这个子程序来启动随机数生成器,启动之后就可以经过调用random_number来得到一个0~1之间的随机数。 |
8、recursive递归时使用 (回归的,递归的) 潮州广济桥简介Result的使用 | 能够递归执行的函数有一个必要条件,那就是递归函数每次被调用执行时,函数中所声明的局部变量都会使用不同的内存地址。简单地说,函数中的局部变量在每次调用时都是独立存在的。 Fortran90标准中,递归函数一定要作用Result来改名。 |
9、save Statement and Attribute Prerves the values of a variable after the execution of a RETURN or END statement in a procedure. Statement Syntax SAVE [name] 红枣鸡汤 | |
10、pure | 统计文员用来配合并行运算使用。使用pure函数时有很多限制:(1)pure函数的参数都是只读intent(in)。(2)pure子程序的每个参数都要赋值属性。(3)pure函数中不能使用save。(4)pure函数中所包含的内部函数也都必须是pure类型函数。(5)pure函数中不能使用stop、print及跟输出入相关的命令如read、write、open、clo、backspace、end file、rewind、inquire等等。(6)pure函数中只能够读取,不能改变全局变量的值。 |
11、elemental 在Fortran PowerStation 4.0中没有这项功能 | |
12、 Module模块 | MODULE中的变量如果不是声明成全局变量,这些变量被函数使用时,只会是函数中的局部变量。如果想让函数之间通过MODULE中的变量来传递数据,要把这些变量声明成全局变量。或者是在声明变量时加上SAVE,在MODULE声明中指定要SAVE的变量,功能上也等于全局变量。 |
13、 namelist | |
14、Module再论 | 可以通过PUBLIC与PRIVATE来定义函数是否能对外公开;没有特别经过PRIVATE或PUBLIC来赋值时,默认的状态为PUBLIC。 |
15、函数date_and_time | |
16、ONLY属性 | |
17、OVERLOAD | |
18、INTERFACE的OPERATOR操作 | |
19、 | 对于*.LIB文件,可以直接添加到PROGRAM中,也可以放在LIBRARY FILES的搜索目录下;但是对于*.MOD就没有办法直接把它加入PROGRAM中,必须把它放在INCLUDE FILES的搜索目录下。 |
20、程序代码优化 | (1)执行速度 (2)内存使用量 |
21、程序代码优化处理 | 1)使用好的算法 2)避免重复的计算 聚会的目的迅雷3)表达式的选择 4)整数与浮点数的选择 5)访问速度 6)利用cache 7)减少程序代码的跳转、转向 |
22、FORTRAN语言与其他语言的链接 | |
23、Double Buffer | 双缓冲器 |
24、stop Terminates program execution before the end of the program unit. | STOP [stop-code] stop-code (Optional) A message. It can be either of the following: A scalar character constant of type default character. A string of up to six digits; leading zeros are ignored. (Fortran 95/90 and FORTRAN 77 limit digits to five.) |
25. return Statement: Transfers control from a subprogram to the calling program unit. | RETURN [expr] expr Is a scalar expression that is converted to an integer value if necessary. The expr is only allowed in subroutines; it indicates an alternate return. (An alternate return is an obsolescent feature in Fortran 95 and Fortran 90.) Example:处理英文 CALL CHECK(A, B, *10, *20, C) ... 10 ... 20 ... SUBROUTINE CHECK(X, Y, *, *, C) ... 50 IF (X) 60, 70, 80 60 RETURN 70 RETURN 1 80 RETURN 2 END |
26.exit Statement: Terminates execution of a DO construct. | Syntax EXIT [name] name (Optional) Is the name of the DO construct. |
27. null Transformational Intrinsic Function (Generic): Initializes a pointer as disassociated when it is declared. This is a new intrinsic function in Fortran 95. | |
28. nullify | |
29. associated(pointer,[target]) | |
30. pointer 实际上每一种指针变量都占用相同的内存空间 | |
31. allocate | |
32. deallocate | |
33.forall FORALL (triplet-spec[,triplet-spec] ...[,mask-expr]) assignment-stmt | |
34. .asp文件 指的是:Active Server Page的缩写,意为“动态服务器页面。 | |
关于夏天的诗歌 | |
本文发布于:2023-05-20 23:19:37,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/fan/89/920947.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |