Difference between revisions of "Protected"

From Free Pascal wiki
Jump to navigationJump to search
(Created page with "{{Protected}} The modifier <syntaxhighlight lang="Pascal" inline>protected</syntaxhighlight> is part of object-oriented programming. Within a Class|<syntaxhighlight...")
 
m (Added back link page)
 
Line 1: Line 1:
 
{{Protected}}
 
{{Protected}}
 +
 +
 +
Back to [[Reserved words]].
 +
  
 
The [[modifier]] <syntaxhighlight lang="Pascal" inline>protected</syntaxhighlight> is part of [[object-oriented programming]].
 
The [[modifier]] <syntaxhighlight lang="Pascal" inline>protected</syntaxhighlight> is part of [[object-oriented programming]].
Line 5: Line 9:
  
 
== See also ==
 
== See also ==
 +
 
* [[Private|<syntaxhighlight lang="Pascal" inline>Private</syntaxhighlight>]]
 
* [[Private|<syntaxhighlight lang="Pascal" inline>Private</syntaxhighlight>]]
 
* [[Public|<syntaxhighlight lang="Pascal" inline>Public</syntaxhighlight>]]
 
* [[Public|<syntaxhighlight lang="Pascal" inline>Public</syntaxhighlight>]]
 
* [[Published|<syntaxhighlight lang="Pascal" inline>Published</syntaxhighlight>]]
 
* [[Published|<syntaxhighlight lang="Pascal" inline>Published</syntaxhighlight>]]

Latest revision as of 12:50, 23 February 2020

Deutsch (de) English (en)


Back to Reserved words.


The modifier protected is part of object-oriented programming. Within a class, a protectedmodifier refers to an area that is restricted to its own class or the methods derived from it see and access them.

See also