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
Leave a Reply