-
-
Notifications
You must be signed in to change notification settings - Fork 4
char_
villares edited this page May 24, 2020
·
4 revisions
int i = 65;
char c = char(i);
println(i + " : " + c); // Imprime "65 : A"
float f = 72.4;
c = char(f);
println(f + " : " + c); // Imprime "72.4 : H"
boolean b = true;
c = char(b);
println(b + " : " + c); // Imprime "true : t"
Converte um tipo de dados primitivo, string ou *array *na sua representação em char
char(valor)
Parâmetros valor int, float, byte, boolean, String, int[], float[], byte[], boolean[], String[]
char
Web & Applicações
A referência de Processing está sob a licença Creative Commons BY-NC conforme indicado aqui. Esta Wiki-tradução é baseada na tradução e adaptação para o Português do Brasil do professor Luiz Ernesto Merkle