What is encapsulation with simple example in php?

前端 未结 14 1456
谎友^
谎友^ 2020-12-08 02:27

What is encapsulation with simple example in php?

相关标签:
14条回答
  • 2020-12-08 03:16

    Encapsulation: - wrapping of data in single unit. also we can say hiding the information of essential details. Example: You have a mobile phone.... there it some interface which helps u to interact with cell phone and u can uses the services of mobile phone. But the actually working in cell phone is hide. u don't know how it works internally.

    0 讨论(0)
  • 2020-12-08 03:19

    Wrapping up of data inside single unit is called encapsulation. Means class members such as method and properties binds together inside a class to avoid accessibility from outside.This is done by making variables and functions of class private.

    0 讨论(0)
提交回复
热议问题