fbpx

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 Gas Optimization Tip

Solidity is a special language with many little quirks. A lot of things behave differently in Solidity than most other…

Read Story

The Ultimate Solidity 0.8 Cheatsheet

Comments You can write comments to document your code; Single-line comments (//) and multi-line comments (/.../) are possible. // This…

Read Story

Getting Started with Cairo Lang

Installation We recommend working inside a python virtual environment, but you can also install the Cairo package directly. To create…

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