0
我有一個FORTRAN函數來改變字符串的情況下函數返回改變其輸入
Function chcase (a) Result (b)
Character (Len=:), Allocatable :: b
Character (Len=*), Intent (In) :: a
Create string s, upper case of string a
...
b = Trim (s)
End Function chcase
我希望能夠通過調用
s = chcase (s)
改變使用相同字符串的話應該我更好地利用
Character (Len=*), Intent (InOut) :: a
使用意向(在)我仍然得到正確的結果