Open In App

Solidity – Encapsulation

Improve
Improve
Like Article
Like
Save
Share
Report

Encapsulation is fundamental and one of the most important concepts of object-oriented programming languages. It refers to the mechanism of manipulation of the scope of variables, i.e. it restricts the access of the variable outside the scope. It allows enough constraint access to a method for taking action on it. The scope of the objects can have four types of access: 

  1. Public: These objects can be accessed internally and externally as well as via messages also. Public elements can be inherited by external methods. A getter function is generated automatically when a public variable is created.
  2. Internal: As the name suggests, Internal objects can be accessed by internal methods or by derived methods but cannot be accessed by external ones. Only a base contract and a derived contract has its access.
  3. Private: Private objects can only be accessed internally from the current contract instances. They cannot be accessed by derived methods also.
  4. External: These objects can be accessed externally but not internally i.e. current contract instances cannot access it. They cannot be inherited.

Example: In the below example, the contract parent is inherited by the contract child to demonstrate different scopes of the object discussed above.

Solidity




// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0; 
/// @title A contract for demonstrate Encapsulation
/// @author Jitendra Kumar
/// @notice For now, this contract just show how Encapsulation approach works in solidity
contract parent {
 
   // Declaring public
   // state variable
   uint public num = 30;
 
   // Declaring internal
   // state variable
   uint internal internal_num= 10;
    
   // Defining external function to
   // demonstrate access of
   // internal state variable
   function sqrt() external returns (
     uint) {
      internal_num = internal_num ** 2;
      return internal_num;
   }
}
 
// Defining calling contract
contract Caller {
 
   // Creating a child
   // contract object
   child c = new child();
 
   // Defining public function
   // to demonstrate access
   // to external function sqrt
   function f() public returns (
     uint) {
      return c.sqrt();
   }
 
   // Defining function to
   // demonstrate access to
   // public functions increment()
   // and add()
   function f2() public returns(
     uint, uint){
       return (c.increment(), c.add());
   }
}
 
// Defining child contract
// inheriting parent contract
contract child is parent {
 
   // Defining public function
   // to demonstrate access to
   // public state variable num
   function increment(
   ) public payable returns (uint) {
      num = num + 20;
      return num;
   }
 
   // Defining public function
   // to demonstrate access
   // to local variable a, b, and sum
   function add() public pure returns(
     uint){
      uint a = 10;
      uint b = 20;
      uint sum = a + b;
      return sum;
   }
}


Output: Deploy the Caller Contract to get the output of the given Example.

1. Output of f():

{
                       "0": "uint256: 100"
}      

2. Output of f2() :

{
                            "0": "uint256: 50",
                            "1": "uint256: 30"                           
}


Last Updated : 20 Feb, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads