-
-
Notifications
You must be signed in to change notification settings - Fork 4
str_
villares edited this page May 24, 2020
·
4 revisions
boolean b = false;
byte y = -28;
char c = 'R';
float f = -32.6;
int i = 1024;
String sb = str(b);
String sy = str(y);
String sc = str(c);
String sf = str(f);
String si = str(i);
sb = sb + sy + sc + sf + si + sh;
println(sb); // Imprime 'false-28R-32.61024'
Retorna uma representação em String de tipos de dados primitivos e *arrays. *Por exemplo, o inteiro 3 retornará "3", o float -12.6 retornará a string "-12.6", e o valor booleano true retornará a string "true".
str(dado)
Parâmetros dado boolean, byte, char, float, int, boolean[], byte[], char[], float[], int[]
String ou String[]
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