문제

Suppose G is a (large) two-dimensional array. If I save the array by writing G to a text file as in:

  WRITE(1,*) G

and then later in a separate subroutine I try to recover by doing this:

  READ (1,*)  G

Will the READ statement keep reading all the lines of the text file until G is filled up with values? Basically, how "smart" is this read statement in this context?

도움이 되었습니까?

해결책

Yes. A list directed read statement will continue reading records until it has satisfied the list of input items or run out of file.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top