Variáveis Flashcards

Métodos básicos de variáveis

1
Q

Método para aredondamenro

A

Variavel.round();

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Método para comparar

A

Variavel.compareTo(valor a ser comparado)

< 0
Variavel menor

= 0
Igual

> 0
Variavel maior

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Metodo de Conversão de tipos

A

Variavel.toInt();
Variavel.toString();
Variavel.toDouble()

(Tipo).parse(“string” onErro: (){})

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Conversão para string com casas decimal

A

Variavel.toStringAsFixed(qtdcasas)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Saber o tipo da variavel

A

variavel.runtimeType

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Desconsiderar casas decimais

A

Variavel.truncate()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly