GET and SET in objects: In object-oriented programming, encapsulation is one of the most applied and necessary concepts for the proper development of the methodology within the development environment.

Private attributes need to, somehow, be accessed publicly. Thus, as a condition for the entry, modification and verification of values, we use the so-called accessor methods, also known as getters and setters.

GET is the nomenclature used in methods that return the value of the private variable; SET is already used in methods that indicate a new value to the variable.

In PHP, you can apply to the class both methods, GET and SET, thus ensuring the application of the concept of encapsulation, as can be seen in the example below:

class Employee{

private $name;

public function getName(){

return $this->$name;

}

public function setName($a){

$this->$name = $a;

}

}

In the example, we have the variable $name being encapsulated through the getName () and setName () methods, returning to and including values respectively.

If one needs to encapsulate an entire object, it’s also necessary to make use of accessor methods in order to ensure the implementation and application of the concept. Check following:

class Employee{

private $name;

private card = new Card();

public function getName(){

return $this->$name;

}

public function setName($a){

$this->$name = $a;

}

            public function getCard(){

return $this->$card;

}

public function setCard($ident, $rg, $sector){

$this->$card->setIdent($ident);

$this->$card->setRg($rg);

$this->$card->setSector($sector);

}

}

In this second example we have the practical application of the concept, in which are used the GET and SET methods of an object inside another object.

Check out more content on our blog!
Learn all about Scriptcase.

By ,

June 4, 2015

a

You might also like…

Business Process Automation with Scriptcase

In the modern business world, operational efficiency is not just a goal. It's a necessity. With inc...

“We developed RISK4ALL, a SaaS platform that allows implementing GRC in an organization with total security and privacy.” (RISK4ALL)

Come and discover the success case of the Risk4all, software, a multilingual and multi-company SaaS...

You might also like…

Get new posts, resources, offers and more each week.

We will use the information you provide to update you about our Newsletter and Special Offers. You can unsubscribe any time you want by clinck in a link in the footer of any email you receive from us, or by contacting us at sales@scriptcase.net. Learn more about our Privacy Police.