Difference between revisions of "Private"

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

Latest revision as of 07:44, 23 February 2020

Deutsch (de) English (en)


Back to Reserved words.


The modifier private is part of object-oriented programming. The modifier private designates within a class an area which only the methods of its own class can see. The modifier private means within a class an area that only the methods of its own class can access.

See also