- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When using move_alloc and allocate as below is there a way to initialize memory so that you do not get random garbage in the locations beyond what gets filled in the copy process?
a$s%num_funds = a$s%num_funds + 1
call move_alloc(a$s%fund, t_fund)
allocate(a$s%fund(a$s%num_funds))
a$s%fund(1:a$s%num_funds - 1) = t_fund(1:a$s%num_funds - 1)
Thanks.
Michael
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
MOVE_ALLOC isn't relevant here. If the array you are allocating is of a derived type, you can specify initial values for the components of that type. There is an option, /Qinit:zero,arrays , that will initialize allocated arrays of intrinsic type to zero, but I don't recommend its use.
In a situation such as this, I suggest adding code to explicitly initialize the unused element(s) if you depend on them being in a specific state later.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In May 1978 using a Daemon computer and punch cards the old grouch who taught us Fortran said - always initialize variables -- but back then no one used implicit none
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page