OOP Using Java Unit 1
OOP Using Java Unit 1
19A05303T
COURSE CODE :
I
UNIT :
P LAKSHMI
PREPARED BY :
CONCEPTS:
• Introduction to Object Oriented Programming
• The History and Evolution of Java
• Introduction to Classes
• Objects, Methods
• Constructors, this keyword, Garbage Collection
• Data Types, Variables,
• Type Conversion and Casting , Arrays
• Operators, Control Statements,
• Method Overloading, Constructor Overloading
• Parameter Passing, Recursion,
• String Class and String handling methods.
Programming
Spoken
Languages
Languages
Java bytecode is the instruction set for the Java Virtual Machine.
Java byte code is the combination of object code and assembly code .
When we write a program in Java, firstly, the compiler compiles that program and a
bytecode (class file) is generated for that piece of code.
When we wish to run this .class file is exicuted by JVM and generate matching code.
3.Portable
(they can be executed on any kind OS)
4.Object-Oriented
(it is complete object oriented programming)
5.Robust
(it is very strong with type checking
6.Multithreaded
( java support Multithreading)
8.Interpreted
(java maintain both compiler and interpreter)
9.High Performance
(java maintain JIT compiler)
10.Distributed
(Java supports distributed computation using Remote Method Invocation (RMI)
concept. )
11.Dynamic
(Libraries are dynamically linked during runtime
Centre (Variables)
radius
circumference()
area()
Add fields
public class Circle
{
public double x, y; // centre coordinate
public double r; // radius of the circle
}
int age; }
void barking() {
{ }
}
aCircle
bCircle
bCircle = aCircle;
P Q P Q
ObjectName . VariableName
ObjectName .MethodName(parameter-list)
Output:
Bike is created
The main purpose of using this keyword is to differentiate the formal parameter and
data members of class.
whenever the formal parameter and data members of the class are similar then jvm
get ambiguity (no clarity between formal parameter and member of the class)
To differentiate between formal parameter and data member of the class, the data
member of the class must be preceded by "this".
35
COURSE: OOPJ UNIT: 1 Pg. 35
this() : to invoke current class constructor
class A{
A(){System.out.println("hello a");}
A(int x){
this();
System.out.println(x);
class TestThis5{
A a=new A(10);
}}
Out put:
hello a
36
10 COURSE: OOPJ UNIT: 1 Pg. 36
Calling parameterized constructor from default constructor:
class A{
A(){
this(5);
System.out.println("hello a");
A(int x){
System.out.println(x);
class TestThis6{
A a=new A();
}}
Out put:
5 37
COURSE: OOPJ UNIT: 1 Pg. 37
this: to pass as an argument in the method
class S2{
System.out.println("method is invoked");
void p(){
Hear this refer
m(this); current class object
}
S2 s1 = new S2();
s1.p();
} }
Out put:
38
method is invoked COURSE: OOPJ UNIT: 1 Pg. 38
: this keyword can be used to return current class instance
We can return this keyword as an statement from the method. In such case, return
type of the method must be the class type (non-primitive). Let's see the example:
return_type method_name()
{
Control jump from out
return this; of method
}
39
COURSE: OOPJ UNIT: 1 Pg. 39
GARBAGE COLLECTION:
In java, garbage means unreferenced objects created by new operator dynamically.
Garbage Collection is process of reclaiming the runtime unused memory automatically. In
other words, it is a way to destroy the unused objects.
To do so, we were using free() function in C language and delete() in C++. But, in java it is
performed automatically. So, java provides better memory management.
ADVANTAGE OF GARBAGE COLLECTION
It makes java memory efficient because garbage collector removes the unreferenced
objects from heap memory.
It is automatically done by the garbage collector(a part of JVM) so we don't need to make
extra efforts.
If you want to make your object eligible for Garbage Collection, assign its reference
variable to null.
Primitive types are not objects. They cannot be assigned null.
Exp:
int x=5,x1; Fig . 1.8:Narrowing type
byte b=8,b1;
x1=b; //Winding
b1=(byte) x; // Narrowing
COURSE: OOPJ UNIT: 1 Pg. 43
ARRAYS
GROUP OF OPERATORS:
Arithmetic Operators(+,-,*,/ ,%)
• Assignment Operator(=)
• Order of Precedence
• Increment/Decrement Operators(++,--)
Relational Operators(<,>,<=,>=,==,!=)
Logical Operators(&&,||,!)
Bitwise Operators(~,&,|,^)
Shift Operators(>>,>>>,>>)
Ternary Operator(?)
a 00000000000000000000000000000011 3
a >> 2 00000000000000000000000000000000 0
>>
Left
b 11111111111111111111111111111100 -4
b >> 2 11111111111111111111111111111111 -1
int a = 3; // ...00000011 = 3
int b = -4; // ...11111100 = -4
a 00000000000000000000000000000011 3
a >>> 2 00000000000000000000000000000000 0
>>>
Right 0
b 11111111111111111111111111111100 -4
b >>> 2 00111111111111111111111111111111 +big
Java includes a special ternary operator that can replace certain types of if – then -
else statements. This operator is ?.
The syntax is:
expression1?expression2:expression3;
Hear expression1 returns boolean value.
If expression1 returns true then expression2 is executed, if expression1 return
false then expression3 is exicuted.
EXAMPLE :
class CheckEvenNumber
{
public static void main( String args[] ) {
int number = 3;
String msg = (number % 2 == 0) ? " The number is even!" : " The number is odd!";
System. out. println(msg);
} }
In general, there are two ways that a computer language can pass an argument.
1. call-by-value(pass values).
2. call-by-reference(pass object).
Java also use above two ways to pass an argument.
When you pass a primitive type to a method, it is passed by value
When you pass an object to a method, it is call-by-reference
int fact(int n) {
int result;
if(n==1) return 1;
result = fact(n-1) * n;
//fact(3-1)*3->fact(2-1)*2*3->1*2*3
return result;
}
The output from this program is shown
class Recursion { here:
public static void main(String args[]) {
codePointAt() Returns the Unicode of the character at the specified index int
codePointBefore() Returns the Unicode of the character before the specified index int
codePointCount() Returns the Unicode in the specified text range of this String int
contentEquals() Checks whether a string contains the exact same sequence of boolean
characters of the specified CharSequence or StringBuffer
copyValueOf() Returns a String that represents the characters of the character array String
endsWith() Checks whether a string ends with the specified character(s) boolean
equals() Compares two strings. Returns true if the strings are equal, and false if boolean
not
JAVA VERSIONS:
Version - Release date Version - Release date
•JDK Beta - 1995 •Java SE 8 - March 2014
•JDK 1.0 - January 1996 •Java SE 9 - September 2017
•JDK 1.1 - February 1997 •Java SE 10 - March 2018
•J2SE 1.2 - December 1998 •Java SE 11 - September 2018
•J2SE 1.3 - May 2000 •Java SE 12 - March 2019
•J2SE 1.4 - February 2002 •Java SE 13 - September 2019
•J2SE 5.0 - September 2004 •Java SE 14 - March 2020
•Java SE 6 - December 2006 •Java SE 15 - September 2020
•Java SE 7 - July 2011
Fig . 1.14
COURSE: OOPJ UNIT: 1 Pg. 68
Scanner Class :
Import java.util.Scanner;
Class Exp
{
public static void main(String[] args)
{
int num;
Scanner sc=new Scanner(System.in);
System.out.println(“Enter num value”);
num=sc.nextInt();
System.out.println(“num:”+num);
}
}
COURSE: OOPJ UNIT: 1 Pg. 69
Import java.util.Scanner;
class Array
{
public static void main ( String[] args )
{
int[] array = new int[5];
Scanner sc=new scanner(System.in);
System.out.println(“Enter elements in to ayyay”);
for ( int i=0; i < 5; i++ )
{
array[i]=sc.nextInt();
}
System.out.println(“Array elements:”);
for ( int i=0; i < 5; i++ )
{
System.out.println(“array[“ + i + ”]” + array[i]);
}
}
}
COURSE: OOPJ UNIT: 1 Pg. 70
Scanner Methods:
nextBoolean() : Reads a boolean value from the user
identifiers,
comments,
literals,
operators,
Separators
keywords.