public entry - Topic Profile
  Home FAQ Contact Sign in
 
Advanced search
POPULAR GROUPS

more...

Most active groups for topic
aol.neighborhood.nj.jerseycity 1721
microsoft.public ... calendaring 142
alt.philosophy 136
microsoft.public.outlook.contacts 116
uk.transport.london 80
soc.culture.hongkong 73
gnu.emacs.sources 62
uk.transport 53
microsoft.public.outlook 49
perl.cpan.testers 44
Last week most active authors
No posts for a week
Last active threads
Fortran 2003 question regarding public entries of private types
Started Tobias Burnus · Date: Aug 19, 2007 13:03 · 2 post(s)
Last week hot threads
No posts for a week
Latest posts
Re: Fortran 2003 question regarding public entries of private types
Group: comp.lang.fortran · Group Profile · Search for public entry in comp.lang.fortran
Author: nospam
Date: Aug 19, 2007 14:15

...> END TYPE hidden TYPE(hidden), PUBLIC :: one = hidden(5) END MODULE mod... to me. That "one" can be public although "hidden" is PRIVATE is a...type definition is private is irrelevant. Public and private are really incredibly simple...fact that their names are misleading. :-( Public means that the name (well, .... That is the name is public. Something like EXPORT might have been a better term, though PUBLIC isn't too bad. Private ...
Show full article (3.29Kb)
Fortran 2003 question regarding public entries of private types
Group: comp.lang.fortran · Group Profile · Search for public entry in comp.lang.fortran
Author: Tobias Burnus
Date: Aug 19, 2007 13:03

... x END TYPE hidden TYPE(hidden), PUBLIC :: one = hidden(5) END MODULE mod ... second is.) That "one" can be public although "hidden" is PRIVATE is a...by use association have either the PUBLIC or PRIVATE attribute. Types for which...accessibility attribute for a module is PUBLIC unless it has been changed by...). Only types that have the PUBLIC attribute in that module are available...even if the type itself is public (5.1.2.2). The component...
Show full article (3.25Kb)