Introduction to Java (1)
Introduction to Java (1)
Boilerplate Comments
@cseabhisheks 1
JAVA 5
Scanner Class
(import java.util.Scanner)
@cseabhisheks 2
JAVA 5
@cseabhisheks 3
JAVA 5
@cseabhisheks 4
JAVA 5
Operators
1. Arithmetic
a. Binary (mathematical) operator: + - * / %
b. Unary operator: ++x x++ --x x—
c. Ternary operator: ?:
@cseabhisheks 5
JAVA 5
@cseabhisheks 6
JAVA 5
Math function
@cseabhisheks 7
JAVA 5
String Function
Associativity of operator (* and / has both same important and rest bodmas rule is same)
@cseabhisheks 8
JAVA 5
@cseabhisheks 9
JAVA 5
Conditional Branching/Selectional
Control/Decision Making
If Statement if else Statement if only one statement
Switch statement
@cseabhisheks 10
JAVA 5
Loop Statement
1)Exit Controlled Loop/post tested loop (do while loop)
2)Entry Controlled Loop/pre tested loop (for loop,for each loop, while loop)
@cseabhisheks 11
JAVA 5
Function
call by value call by reference
Function overloading:
1. Parameter (same name different parameter)
Array
For understanding only
1. Int dim[row]
@cseabhisheks 12
JAVA 5
2. Int dim2[row][column]
3. Int dim3[depth][row][column] (generally not used but can be)
Multidimensional Array
2d and 3d array and many more
OOPS: Class
Object: Entities in the real-world (ex-p)
Classes: Group of these entities (ex-pen)
this keyword: It is used to use already define variable(ex-this.price)
@cseabhisheks 13
JAVA 5
@cseabhisheks 14
JAVA 5
Final Keyword
1. Final variable
@cseabhisheks 15
JAVA 5
2. Final methods
3. Final class
Constructor:
constructor overloading: multiple constructors within a class each with different parametrized
@cseabhisheks 16
JAVA 5
here I explain three: parametrized constructor, default (non-parametrized) and constructor overloading
@cseabhisheks 17
JAVA 5
@cseabhisheks 18
JAVA 5
3. Polymorphism
@cseabhisheks 19
JAVA 5
@cseabhisheks 20
JAVA 5
Extending interface
Multiple inheritance is not supported by java but can be implement using interface
@cseabhisheks 21
JAVA 5
Package
Main Function Folders/Packagess
Packages
@cseabhisheks 22
JAVA 5
Errors in JAVA
throws keyword
Operator Overloading
@cseabhisheks 24
JAVA 5
Awt
Abstract Window Toolkit (AWT) is an API used for developing GUI(Graphic
User Interfaces) or Window-Based Applications in Java.
@cseabhisheks 25
JAVA 5
@cseabhisheks 26
JAVA 5
@cseabhisheks 27
JAVA 5
@cseabhisheks 28