Oracle Java Notes
Oracle Java Notes
● Boolean: This data type represents one bit of information, but its "size" isn't
something that's precisely defined.
● The prefix 0x indicates hexadecimal and 0b indicates binary:
// The number 26, in decimal
int decVal = 26;
// The number 26, in hexadecimal
int hexVal = 0x1a;
// The number 26, in binary
int binVal = 0b11010;
● The floating point types (float and double) can also be expressed using E or e (for
scientific notation), F or f (32-bit float literal) and D or d (64-bit double literal; this is
the default and by convention is omitted).
double d1 = 123.4;
// same value as d1, but in scientific notation
double d2 = 1.234e2;
float f1 = 123.4f;
● Unicode escape sequences may be used elsewhere in a program (such as in field
names, for example), not just in char or String literals.
● Finally, there's also a special kind of literal called a class literal, formed by taking a
type name and appending ".class"; for example, String.class. This refers to the object
(of type Class) that represents the type itself.
● You can place underscores only between digits; you cannot place underscores in the
following places:
● All of the numeric wrapper classes are subclasses of the abstract class Number.
Note: There are four other subclasses of Number that are not discussed here.
BigDecimal and BigInteger are used for high-precision calculations. AtomicInteger
and AtomicLong are used for multi-threaded applications.
● Note the difference:
int parseInt (String)
Integer valueOf (String)
Integer decode (String) - Can accept string representations of decimal, octal, or
hexadecimal numbers as input.
Inheritance
● Constructors are not members, so they are not inherited by subclasses
● A subclass does not inherit the private members of its parent class. However, if the
superclass has public or protected methods for accessing its private fields, these can
also be used by the subclass.
● A nested class has access to all the private members of its enclosing class—both
fields and methods. Therefore, a public or protected nested class inherited by a
subclass has indirect access to all of the private members of the superclass.
StringBuilder class
● Internally, these objects are treated like variable-length arrays that contain a
sequence of characters.
● Strings should always be used unless string builders offer an advantage in terms of
simpler code (see the sample program at the end of this section) or better
performance. For example, if you need to concatenate a large number of strings,
appending to a StringBuilder object is more efficient.
● The principal operations on a StringBuilder that are not available in String are the
append() and insert() methods, which are overloaded so as to accept data of any
type.
● There is also a StringBuffer class that is exactly the same as the StringBuilder class,
except that it is thread-safe by virtue of having its methods synchronized.