Tu tema para ayedar a la jente esta chevere. Se un poco de JAVA.
----------
Para la jente q quiera aprender JAVA tengo unos cuntos libros (Ingles) de JAVA.
----------
Este libro "Java Programming for the Absolute Beginner" es muy bn para una persona q no sabe nada de Programmacion.
----------
Estos son algunas cosas basicas para JAVA tambn para VB
Keyword Description Size
byte Byte-size integer 8-bit
short Short integer 16-bit
int Integer 32-bit
long Long integer 64-bit
char Single character 16-bit
float Single-precision floating point 32-bit
double Double-precision floating point 64-bit
boolean True or false 1-bit
TABLE 2.1 PRIMITIVE DATA TYPES
Literal Data Type
27 int
033 int (octal representation when preceded by 0)
0x1b int (hexadecimal representation when preceded by 0x)
27L long
27.0 double
27.0D double
27.0e3 double (27.0 ×103, or 27,000.0)
27.0F float
‘B’ char
true boolean
false boolean
null null object reference
TABLE 2
Escape Code Interpretation
\’ Single quotation mark
\” Double quotation mark
\b Backspace
\f Form feed (page break)
\n Newline character
\r Carriage return
\t Tab
Última edición por zerrocoolcp; 26-dic-2007 a las 00:01.
Razón: Autounión Mensaje Seguido
|