Fortran子例程中的TARGET属性

如何解决Fortran子例程中的TARGET属性

(我使用了ifort 19.0.5.281)

在以下测试代码中,在#include <stdio.h> #include <stdlib.h> typedef struct test_T { int count1; int count2; int *array1; int *array2; int check; } test_T; int main() { #define DATA_COUNT 8 int data[DATA_COUNT] = { 2,3,20,21,30,31,32,100 }; test_T *s_t = malloc(sizeof(*s_t)); s_t->count1 = DATA_COUNT; s_t->count2 = DATA_COUNT; s_t->array1 = malloc(sizeof(int) * s_t->count1); s_t->array2 = malloc(sizeof(int) * s_t->count2); s_t->check = 100; for (int i = 0; i < DATA_COUNT; i++) { s_t->array2[i] = s_t->array1[i] = data[i]; } printf("%d\n",s_t->check); return 0; } 中,我将POINTER用作INTENT(IN)并检查其关联状态,并将其关联更改为局部变量move_association

array(4,4)

乍一看,我认为应该有一些问题,因为Fortran会在其末尾自动取消分配子例程的局部变量,从而使module mod_test implicit none contains subroutine write_matrix_2d(a) implicit none real,intent(in) :: a(:,:) ! local variables integer :: i,j do i = lbound(a,1),ubound(a,1) write(*,*) ( a(i,j),j = lbound(a,2),2) ) enddo end subroutine (*) subroutine move_association(a) implicit none real,pointer,intent(inout) :: a(:,:) ! local real,target :: array(4,4) array = -1 if ( associated(a) ) then print *,"POINTER is associated" a => array else print *,"POINTER is NOT associated" a => array endif end subroutine end module program test use mod_test implicit none real,dimension(3,3),target :: ct(3,3) real,dimension(:,:),pointer :: cptr(:,:) ct = 1 !cptr => ct(2:3,2:3) write(*,*) write(*,*) 'ct' call write_matrix_2d(ct) write(*,*) 'cptr before' call write_matrix_2d(cptr) write(*,*) (*) call move_association(cptr) write(*,*) 'cptr after' call write_matrix_2d(cptr) write(*,*) if ( associated(cptr) ) then print *," cptr associated " else print *," cptr not associtated " endif end program 失去目标。但是cptr意外地幸免了下来,并且其关联状态也被检查为“ associated”,如以下输出所示。

cptr

我想可能还有其他规则,例如子例程中的本地 ct 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 cptr before POINTER is NOT associated cptr after -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 cptr associated 变量会自动获得target属性,以此类推,对吗?

解决方法

末尾的指针状态为undefined。不允许查询状态未定义的指针的关联状态,它包含一些垃圾。垃圾恰好是不再有效的本地数组。您必须先使其无效或将其自己关联,然后再进行进一步的查询。

另请参阅http://www.cs.rpi.edu/~szymansk/OOF90/bugs.html#5

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


依赖报错 idea导入项目后依赖报错,解决方案:https://blog.csdn.net/weixin_42420249/article/details/81191861 依赖版本报错:更换其他版本 无法下载依赖可参考:https://blog.csdn.net/weixin_42628809/a
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下 2021-12-03 13:33:33.927 ERROR 7228 [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPL
错误1:gradle项目控制台输出为乱码 # 解决方案:https://blog.csdn.net/weixin_43501566/article/details/112482302 # 在gradle-wrapper.properties 添加以下内容 org.gradle.jvmargs=-Df
错误还原:在查询的过程中,传入的workType为0时,该条件不起作用 &lt;select id=&quot;xxx&quot;&gt; SELECT di.id, di.name, di.work_type, di.updated... &lt;where&gt; &lt;if test=&qu
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct redisServer’没有名为‘server_cpulist’的成员 redisSetCpuAffinity(server.server_cpulist); ^ server.c: 在函数‘hasActiveC
解决方案1 1、改项目中.idea/workspace.xml配置文件,增加dynamic.classpath参数 2、搜索PropertiesComponent,添加如下 &lt;property name=&quot;dynamic.classpath&quot; value=&quot;tru
删除根组件app.vue中的默认代码后报错:Module Error (from ./node_modules/eslint-loader/index.js): 解决方案:关闭ESlint代码检测,在项目根目录创建vue.config.js,在文件中添加 module.exports = { lin
查看spark默认的python版本 [root@master day27]# pyspark /home/software/spark-2.3.4-bin-hadoop2.7/conf/spark-env.sh: line 2: /usr/local/hadoop/bin/hadoop: No s
使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-