Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Bool, Equality and Relational Operators in Dart | Variables and Data Types in Dart
Introduction to Dart
course content

Contenu du cours

Introduction to Dart

Introduction to Dart

1. First Acquaintance with Dart
2. Variables and Data Types in Dart
3. Conditional Statements
4. List and String
5. Loops in Dart

book
Bool, Equality and Relational Operators in Dart

Bool

We already know that bool is a data type that can have two values: true or false. It is used to store logical values.

Here we have created a variable of data type bool with value true.

Here we have created a variable of data type bool with value false.

Equality and Relational Operators

You will use these operators in conditional expressions to make decisions in the program. For example, you can check whether the user has entered the correct password using the equality operator, or determine if a person has access to a specific resource based on their age. In such cases, the result of the comparison becomes a bool value, which helps you make decisions in your program based on conditions.

In this сhapter, we will learn how to store a bool value that will be computed based on whether the condition is true or false.

Examples

dart

main

copy
1234
void main() { bool info = 10 > 2; // `true` print(info); }

10 > 2 is a true statement, so we see the result as true.

dart

main

copy
12345
void main(){ String day1 = 'Monday'; String day8 = 'Monday'; print(day1 == day8); // `true` }

The variables day1 and day8 store the same values, so we get true as a result of the comparison.

Data Type Checking

The following operators do not check the value of the variable. They check the data type of the value.

dart

main

copy
123
void main() { print(4.2 is int); // `false` }

We get false because 4.2 is of the double type.

Tasks

Consider the following expressions and determine whether they evaluate to true or false.

1. 4 != 5

2. 6 <= 6 + 3

3. 4 == 2 + 2

4. var test = 33 is String;

4 != 5

4 != 5

Sélectionnez la réponse correcte

6 <= 6 + 3

6 <= 6 + 3

Sélectionnez la réponse correcte

4 == 2 + 2

4 == 2 + 2

Sélectionnez la réponse correcte

var test = 33 is String;

var test = 33 is String;

Sélectionnez la réponse correcte

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 5
We're sorry to hear that something went wrong. What happened?
some-alt