OOPS


SUBMITTED BY: anilkumarsomasi

DATE: May 3, 2016, 10:58 a.m.

FORMAT: Text only

SIZE: 599 Bytes

HITS: 3224

  1. OOPS
  2. ------
  3. * Data Hiding
  4. * Abstraction
  5. * Encapsulation
  6. * tightlyencapsulated class
  7. * IS-A Relation
  8. * Has-A Relation
  9. * Method Signature
  10. * Overloading
  11. * Overriding
  12. * Static Flow
  13. * Instance flow
  14. * Constructor
  15. * Type casting
  16. -------------------------------
  17. Data Hiding
  18. ------------
  19. our internal data shouldnt go out directly or outside person cant access our internal data.this oop feature is nothing but data hiding.(after authentication/validation we can access data)
  20. * by using private keyword we can achieve data hiding.(by decalring data member as private.)
  21. * Adv: Security

comments powered by Disqus