Iwo Machowski
Iwo Machowski voted up Broad Kenny's answer

Strings could be considered a primitive type in Java, but in fact they are not. As a string is actually
made up of an array of char primitives. In other words, if you create the String “Hello World” like so:

String hellovar = "Hello World";


Iwo Machowski
Iwo Machowski voted up Broad Kenny's answer

Strings could be considered a primitive type in Java, but in fact they are not. As a string is actually
made up of an array of char primitives. In other words, if you create the String “Hello World” like so:

String hellovar = "Hello World";