Introductie tot Java
Jim White
Java Developer




// Examples
char initial = 'J';
char size = 'M';
char ampersand = '&';
Enkele aanhalingstekens
char initial = 'J';
Primitief gegevenstype
Dubbele aanhalingstekens
String name = "Jim";
Geen primitief, een verzameling tekens
Stringchar
String variableName = "Text to store";
//Example
String myName = "Jim White";



Introductie tot Java