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…

“We have developed the Connected Citizen Card, which assists public administrators in decision-making and policy creation.”(Assist Soluções em TI)

Check below how Assist Soluções em TI used Scriptcase to modernize and streamline the development...

AI-Driven Software Development: The Role of ChatGPT

In the rapidly evolving world of technology, artificial intelligence (AI) is playing an increasingl...

Low-Code: The Key to Accessible Digital Transformation

Digital transformation is imperative for companies wishing to remain competitive in the current era...

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.