zoukankan      html  css  js  c++  java
  • fortran 函数的调用标准

    Fortran函数的调用标准在编译时使用iface声明。如iface:default。表示採用的是default标准。
    fortran的调用标准有
    [1] default: Tells the compiler to use the default calling conventions.
    [2] cref: Tells the compiler to use calling conventions C, REFERENCE.
    [3] cvf:Tells the compiler to use calling convention CVF.
    [4] [no]mixed_str_len_arg Determines the argument-passing convention for hidden-length character arguments.
    [5] stdcall Tells the compiler to use calling convention STDCALL.
    [6] stdref Tells the compiler to use calling conventions STDCALL, REFERENCE.

    这里我介绍一下我遇到的default和mixed_str_len_arg标准对函数调用中的character类型的影响。
    fortran 中的character类型相当于c语言中的char[] ,在函数调用中使用character參数,编译器会默认
    地为该參数加入一个长度的參数,
    如 character(len=10) name
    interger catet
    call fortran_fun(name,catet)
    此时。实际传入的參数有3个:name , len(name),catet
    假设使用default调用标准,在參数压栈时会将其len(name)最后压入,(如有多个character參数。则在最后按顺序压入)
    而使用mixed_str_len_arg调用标准时,在參数压栈时。会将len(name)紧跟在name后面压人栈中
    所以假设调用函数与函数有不同的调用标准时,就会出现mismatch。

  • 相关阅读:
    Postman教程大全
    Java关键字(一)——instanceof
    RocketMQ(1)-架构原理----通用MQ知识点
    CAP理论的理解
    Buy the Ticket HDU
    高斯消元求多元一次方程(讲解+板子)
    P3709 大爷的字符串题 莫队
    P4074 [WC2013]糖果公园 树上莫队带修改
    java的静态代码块和类变量的隐式覆盖
    SP10707 COT2
  • 原文地址:https://www.cnblogs.com/gcczhongduan/p/5093443.html
Copyright © 2011-2022 走看看