I would like to achieve the following target:
Use the pointer of first element of a self defined type data (say A) to refer A
I created the following prototype of codes:
program test
implicit none
type foo
integer i
integer j
end type foo
type(foo), target :: a
type(foo) b
integer, pointer :: ai
a%i = 1
a%j = 2
ai => a%i
print *, "Address of a is", loc(a)
b = transfer(ai, b)
print *, "The values of a are:", a%i, a%j
print *, "Address of b is", loc(b)
print *, "The values of b are:", b%i, b%j
end program test
I expect the values of b should be equal with a, but I got the result in my computer as
Address of a is 140736918227392
The values of a are: 1 2
Address of b is 140736918227376
The values of b are: 1 0
Where the value of b%j is different from a%j. What is wrong?
Thanks in advance!
Edit:
My purpose is to hide a defined type (say foo) from user, and only let user access the first part of foo (say an array), and when user provides that array, I can get the rest part of foo. It is sorts of encapsulation. User can be freed from the typing of "%".
transferonly transfer the content ofa%i, and for the rest of the content of typefooforb, undefined value is filled in. So is there any function that can access the content ofa%i. – Li Dong Sep 26 '12 at 13:20memcpyin Fortran? – Li Dong Sep 26 '12 at 13:42