Skip to main content
Known Participant
June 27, 2009
Question

What is internal and what is the use of internal in OOP

  • June 27, 2009
  • 1 reply
  • 313 views

I am unknown about internal in OOP. Is there any body about internal. How we can use this in pratical world

This topic has been closed for replies.

1 reply

AttaBoy2
Inspiring
June 27, 2009

Internal is access modifier. Methods and properties designated as such are accessable by all objects within the same package only.  I believe that's the defination.  When writing classes you modify the access to different properties and methods using access modifiers such as public for publiic interface, private for use by the class it's in only etc.  This link explains better http://lassieadventurestudio.wordpress.com/2009/03/31/public-internal-protected-and-private/  I'm just beginning to learn OOP myself so I can't offer much help.