I am reading a book for Java that I am trying to learn, and I have a question. I can't understand what is the difference between the variable type char and String. For example, there is a difference between int and short, the bytes at the memory and the area of numbers that they have.
But what is the difference between char and String? except that char use (') and "String" (").
PS: It is my first "real" programming language. (At school I learned a fake-language for the purpose of the programming lesson.)
char is a primitive type, and it can hold a single character. String is instead a reference type, thus a full-blown object. It can hold any number of characters (internally, String objects save them in a char array). Primitive types in Java have advantages in term of speed and memory footprint.
An object of type Character contains a single field whose type is char . This Character class also offers a number of useful class (that is, static) methods for manipulating characters. Strings are a sequence of characters and are widely used in Java programming. In the Java programming language, strings are objects.
String is implemented to store sequence of characters and to be represented as a single data type and single entity. Character Array on the other hand is a sequential collection of data type char where each element is a separate entity. String internal implementation makes it immutable in nature.
The char keyword is a data type that is used to store a single character. A char value must be surrounded by single quotes, like 'A' or 'c'.
char is one character. String is zero or more characters.
char is a primitive type. String is a class.
char c = 'a'; String s = "Hi!";   Note the single quotes for char, and double quotes for String. 
char means single character. In java it is UTF-16 character. String can be thought as an array of chars.
So, imagine "Android" string. It consists of 'A', 'n', 'd', 'r', 'o', 'i' and again 'd' characters.
char is a primitive type in java and String is a class, which encapsulates array of chars.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With