Solidity - View & Pure functions | Divyansh Rai

Shared on Blockchain

editor-img
Divyansh Rai
Oct 26, 2022
shared in

Solidity - View & Pure functions

The view functions are read-only function, which ensures that state variables cannot be modified after calling them.

If the statements which modify state variables, emitting events, creating other contracts, using selfdestruct method, transferring ethers via calls, Calling a function which is not ‘view or pure’, using low-level calls, etc are present in view functions then the compiler throw a warning in such cases. By default, a get method is view function.

Example: In the below example, the contract Test defines a view function to calculate the product and sum of two unsigned integers.

// Solidity program to// demonstrate view// functionspragma solidity ^0.5.0;// Defining a contractcontract Test { // Declaring state // variables uint num1 = 2; uint num2 = 4;// Defining view function to// calculate product and sum// of 2 numbersfunction getResult() public view returns( uint product, uint sum){ uint num1 = 10; uint num2 = 16; product = num1 * num2; sum = num1 + num2;}}

Output:

media

The pure functions do not read or modify the state variables, which returns the values only using the parameters passed to the function or local variables present in it.

If the statements which read the state variables, access the address or balance, accessing any global variable block or msg, calling a function which is not pure, etc are present in pure functions then the compiler throws a warning in such cases.

Example: In the below example, the contract Test defines a pure function to calculate the product and sum of two numbers.

// Solidity program to// demonstrate pure functionspragma solidity ^0.5.0;// Defining a contractcontract Test { // Defining pure function to // calculate product and sum// of 2 numbersfunction getResult() public pure returns( uint product, uint sum){ uint num1 = 2; uint num2 = 4; product = num1 * num2; sum = num1 + num2;}}

Output:

media


Checkout related posts on: