1

有没有办法传递 C++ 对象以与 Fortran 77 一起使用?例如:

C23456
      program main
      write (*,*) 'Hello from FORTRAN 77!'
      call readstep('cube.stp'//CHAR(0),myshape)
      stop
      end

然后将 myshape 用作 C++ 对象,该对象将保存在 Fortran 使用的内存中,并将其传递给其他实际使用它的 C++ 函数?

编辑:这是 C++ 代码:

extern"C" {
    void readstep_(char*,void*);
}

void readstep_(char* inputFile, void* outShape){

    STEPControl_Reader reader;
    reader = STEPControl_Reader();

    int succeed = reader.ReadFile(inputFile);

    if(!succeed){
        std::cout << "There was an error with the input file" << std::endl;
        return;
    }

    reader.NbRootsForTransfer();
    reader.TransferRoots();

    TopoDS_Shape myShape = reader.OneShape();
    TopoDS_Shape* myShapePtr = new TopoDS_Shape();
    (*myShapePtr) = myShape;

    outShape = myShapePtr;

    return;
}
4

1 回答 1

5

请阅读标签https://stackoverflow.com/questions/tagged/fortran-iso-c-binding的标签描述以获得更好的选择。还有很多问题和答案。

我将使用星号表示法作为通用扩展名。

C++:

class Obj{

};

extern "C" {
  void hello_();


  void readstep_(char* name, Obj** ptr){
    *ptr = new Obj(); //use name in the actual process
  }
  void pass_it_(Obj** ptr){
    hello_();
    delete *ptr; //some usage of the object
  }

}

由于引用传递,它使用指向指针的指针。

正则表达式:

  program main

    integer*8 myshape

    call readstep('cube.stp'//CHAR(0),myshape)

    call pass_it(myshape)

  end

  subroutine hello
    write (*,*) 'Hello from FORTRAN 77!'
  end subroutine

integer*4在 32 位平台上使用。(注意 STOP 语句没有理由)

编译:

g++ f77c++.f f77c++.C -lgfortran

或者

gfortran f77c++.f f77c++.C -lstdc++

> ./a.out 
 Hello from FORTRAN 77!
于 2014-07-15T15:34:12.803 回答