主题:解决不了,无从下手啊
111.for
program main
....
use ab
....
call sect
....
end
=============================
222.for
module ab
...
contains
include "123.for"
....
end module ab
==============
以上两个文件在source files里
下面的文件在header files里
123.for
subroutine sect
....
call INTERSECT2
end subroutine sect
subroutine INTERSECT2
...
end subroutine INTERSECT2
================
启动调试
.....
错误1 error LNK2019: 无法解析的外部符号 _INTERSECT2,该符号在函数 _AB. 中被引用 222.obj
program main
....
use ab
....
call sect
....
end
=============================
222.for
module ab
...
contains
include "123.for"
....
end module ab
==============
以上两个文件在source files里
下面的文件在header files里
123.for
subroutine sect
....
call INTERSECT2
end subroutine sect
subroutine INTERSECT2
...
end subroutine INTERSECT2
================
启动调试
.....
错误1 error LNK2019: 无法解析的外部符号 _INTERSECT2,该符号在函数 _AB. 中被引用 222.obj