Java Programming U1
Java Programming U1
Object
Class
Inheritance
Polymorphism
Abstraction
Encapsulation
• But the problem he faced with them is that they were system
dependent languages and hence could not be used on various
processors of electronic devices. So, he started developing a
new language which was completely system independent.
• This language was initially called ‘Oak’. Since this name was
registered by some other company, later it was changed to Java.
• The team felt that they were able to develop a better language
because of the good quality of coffee they consumed. So, the
name of the place ‘Java Island’ was exporting the coffee bean
was given as name to the new language.
Robust: Java programs are strong and they don’t crash easily like
C or C++ because it has excellent inbuilt exception handling and
memory management mechanisms.
Output:
Hello World
Java Programming RAGHU EDUCATIONAL INSTITUTIONS 32
Identifiers
Identifiers are the names of variables, methods, classes,
packages and interfaces.
Rules for naming identifiers:
• Identifiers must be composed of letters, numbers, the
underscore _ and the dollar sign $. Identifiers may only begin with
a letter, the underscore or a dollar sign.
Example: int a;
Java Programming RAGHU EDUCATIONAL INSTITUTIONS 34
Variables
String Literal:
String literals represent objects of String class. For
example: “HelloWorld”, “AP05CZ”, “15981A” etc will come
under String literals which can be directly stored into a String
object.
Java Programming RAGHU EDUCATIONAL INSTITUTIONS 43
literals
Character Literal:
Character literals indicate the following:
General characters like A, b, 9 etc.
Special characters like ?, @, &, * etc.
Unicode characters like \u0042 (this means ‘B’ in ISO Latin1
character set)
Escape sequence like \n, \b, \t etc
Note: Character literals should be enclosed in single
quotation marks.
Boolean Literals:
Boolean literals represent only two values either true or false.
Java Programming RAGHU EDUCATIONAL INSTITUTIONS 44
Operators
An operator is a symbol that performs an operation. An
operator acts on some variables called operands to get the
desired result.
Example: a + b
Where, ‘a’ and ‘b’ are operands, + is an operator.
Syntax: variable=expression1?expression2:expression3;
expression2 is executed if expression1 results true,
otherwise expression3 is executed.
new operator:
It is used to create the objects for the classes.
Syntax: classname objectname=new classname();
cast operator:
This is used to convert one data type value to another
data type values. This operator can be used by writing
destination data type inside the parenthesis as below:
Syntax: datatype variable1=(destination datatype) variable2;
Example: int x=5;
double y=(double)x;
Java Programming RAGHU EDUCATIONAL INSTITUTIONS 57
Expressions, Precedence rules
Syntax:
while(condition)
{
//statements;
}
Syntax:
do
{
//statements;
}while(condition);
Syntax:
for(variable:collection_name)
{
//statements
}