A Guide to Operators in Solidity

Rahul Ravindran

Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. In addition, types can interact with each other in expressions containing operators. In this blog we will look at operators in solidity.

Logical Operators

A logical operator is a symbol or word used to connect two or more expressions such that the value of the compound expression produced depends only on that of the original expressions and on the meaning of the operator. They include:

  • ! (logical negation): Reverse the result, returns false if the result is true
  • && (logical conjunction, “and”) : Returns true if both statements are true
  • || (logical disjunction, “or”): Returns true if one of the statements is true

    pragma solidity ^0.8.0;

    // Creating a contract
    contract logicalOperators{

    bool isRaining = true;
    bool isNight = false;

    // will return true
    bool a = !isNight;

    // will return true
    bool b = isRaining || isNight;

    // will return false
    bool c = isRaining && isNight

    }

Comparison Operators

Comparison operators are used to compare values of 2 integers

  • == (equality) : Returns true if values are same
  • != (inequality): Returns true if values are not the same
  • > (Greater than): Checks if left value is greater than right or not, returns true if greater, and vice-versa
  • < (Less than): Checks if left value is less than right or not, returns true if less, and vice-versa

0 Comments

Leave a Reply

More great articles

Solidity Security Part 2 – Oracle Manipulation

Protocols sometimes require additional information from outside the realm of the blockchain to function correctly. Such off-chain information is provided…

Read Story

The ERC721 and ERC1155

This is a quick and nontechnical look into the ERC721 and ERC1155 token standards. Both of these token standards are…

Read Story

The Ethereum Virtual Machine Explained

Once you write your first few solidity contracts, you may wonder how are contract actually executed? Sure, when you compile…

Read Story

Never miss a minute

Get great content to your inbox every week. No spam.
[contact-form-7 id="6" title="Footer CTA Subscribe Form"]
Arrow-up