Maipathi Sir Core and Adv Java and JDBC
Maipathi Sir Core and Adv Java and JDBC
Note:
=>Every Language will have its own Alphabets,Grammer and Construction Rules.
CoreJava:(Language)
ii
2.Programming Concepts
ath
3.Object Oriented Programming features.
ip
1.Programming Components(Java Alphabets)
(a)Variables
Ma
1.Primitive DataType Variables(will hold Values)
(a)Static variables
sh
(b)NonStatic variables
(i)Instance Variables
ate
(ii)Local Variables
(a)Static variables
(b)NonStatic variables
Ve
(i)Instance Variables
(ii)Local Variables
(b)Methods
1.static methods
PAGE:1
(c)Blocks
(d)Constructors
(e)Classes
(f)Interfaces
(g)AbstractClasses
ii
2.Programming Concepts
ath
(a)Object Oriented Programming Concept
ip
(c)Multi-Threading Concept
(e)Files in Java
Ma
(f)Networking in Java
sh
(a)Class
(b)Object
nk
(c)Abstraction
(d)Encapsulation
Ve
(e)PolyMorphism
(f)Inheritance
Note:
PAGE:2
faq:
=>The applications which are installed in one computer and performs actions
or Windows Applications.
ii
ath
Note:
ip
No HTML input
No Server Environment
NO DataBase Storage.
Ma
=============================================================================
sh
*imp
define Program?
ate
=>Set-of-Instructions is a program.
nk
define Programming?
Note:
=>The process of converting 'Analysis and Design' into Source code is known as
Programming.
PAGE:3
define programmer?
==========================================================================
Note:
Test.c
ii
Test.cpp
ath
Test.java
=>After Saving the program,the program will have the following two stages:
ip
(a)Compilation process
(b)Execution process
Ma
sh
(a)Compilation process:
=>C and C++ programs generate Objective Code and Java Programs generate
Ve
ByteCode.
(b)Execution process:
PAGE:4
=>In c and c++ languages,the Objective code is converted into ExecutableCode
Diagram:
ii
ip ath
Ma
sh
============================================================================
faq:
ate
(i)Objective Code
nk
(ii)Byte Code
Ve
(i)Objective Code:
=>The Compiled Code generated from c and c++ programs is known as Objective
Code.
PAGE:5
this reason Objective Code is PlatForm dependent code.
Dis-Advantage:
other PlatForms.
ii
Note:
ath
=>C and c++ languages which are generating Objective Code ara PlatForm dependent
languages.
ip
-----------------------------------------------------------------------
(ii)Byte Code:
Ma
=>The CompiledCode generated from Java programs is known as Byte Code.
Advantage:
=>The ByteCode generated from one Platform can be executed on all Platforms
nk
based on JVM.
Ve
Note:
Diagram:
PAGE:6
ii
ip ath
Ma
sh
============================================================================
Dt : 17/6/2022(Day-2)
ate
*imp
Java Software:
nk
PAGE:7
-----------------------------------------------------
2004 - Java5
2006 - Java6
2011 - Java7
--------------------------------------------
2014 - Java8
ii
2017 - Java9
ath
2018 - Java10 & Java11
ip
2020 - Java14 & Java15
2022 - Java18
Ma
=========================================================
sh
faq:
(i)JDK
(ii)JRE
nk
(i)JDK:
Ve
=>JDK stands for 'Java Development Kit' and which is having JavaCompiler,
JavaCompiler:
PAGE:8
JavaLibrary:
development.
ii
=>packages are collection of 'Classes and Interfaces'.
ath
=>'classes and Interfaces' are collection of 'Variables and Methods'.
ip
Diagram:
Ma
=>The following are some important packages:
sh
CoreJava packages:
AdvJava packages:
Ve
JVM:
PAGE:9
=>JVM Stands for 'Java Virtual Machine' and which is used to execute
Java ByteCode
(iii)Execution Engine
ii
ath
faq:
ip
=>The s/w program which internally having the behaviour like machine is known as
Virtual Machine.
Ma
--------------------------------------------------------------------
(ii)JRE:
sh
=>JRE stands for 'Java Runtime Environment' and which is having JavaLib and
JVM.
ate
Diagram:
Ve
PAGE:10
ii
ip ath
Ma
================================================================
*imp
Note:
C:\Program Files\Java\jdk-17.0.3.1
PAGE:11
RightClick on MyComputer->Properties->Advanced System Settings->
ii
Variable value : C:\Program Files\Java\jdk-17.0.3.1\bin;
ip ath
step-4 : Click 'ok' for three times
Ma
=================================================================
Dt : 18/6/2022
*imp
sh
Writing,Saving,Compiling and Executing Java Program:
*imp
ate
define 'class'?
Methods - Actions
PAGE:12
class Class_name
//variables
//methods
//main()
ii
}
ath
Note:
ip
=>main() in Java will have the following Pre-defined Built-in format:
Ex_Program-1:
sh
wap to display the msg as "Welcome to Java"?
ate
class Display
{
nk
{
Ve
System.out.print("Welcome to Java");
================================================================
PAGE:13
E:\Demo134
ii
Click on File->Save->Browse the Folder->name the file(Display.java)->Click 'save'.
ath
Note:
ip
=>Open CommandPrompt to perform Compilation and execution process.
Ma
=>To open CommandPrompt,goto destination folder->type 'cmd' in Address bar and
press 'enter'.
sh
step-4 : Compile the program as follows
syntax:
ate
javac Class_name.java
Ex:
nk
javac Display.java
Ve
syntax:
java Class_name
Ex:
java Display
PAGE:14
=======================================================================
*imp
=>JVM Stands for 'Java Virtual Machine' and which is used to execute
Java ByteCode
ii
=>JVM internally having the following partitions:
ath
(i)Class Loader SubSystem
ip
(iii)Execution Engine
Diagram:
Ma
sh
ate
nk
Ve
PAGE:15
ii
ip ath
Ma
sh
ate
------------------------------------------------------------
Dt : 20/6/2022
nk
=>Class Loader SubSystem will load Java ByteCode onto Runtime Data Area using
Ve
Loader.
(a)Method Area
PAGE:16
(b)Heap Area
(a)Method Area:
ii
=>The memory block where the class is loaded is known as Method Area.
ath
=>while class loading the static components of class will get the memory
ip
=>In this process the main() method will get the memory within the class and
Ma
which is automatically copied onto JavaStackArea to start the execution process.
(b)Heap Area:
sh
=>The memory location where the objects are created is known as HeapArea.
=>while object creation the NonStatic components of class will get the
ate
=>The memory block where the methods are executed is known as Java Stack Area.
Ve
=>main() is the first method copied onto JavaStack area to start execution
process and this main() method will call remaining methods for execution.
faq:
PAGE:17
=>The partition of JavaStackArea where method is copied for execution is known
as Method Frame.
JavaStackArea.
ii
=>In this process every method executing in JavaStackArea will have its own
ath
PC-Register and all these PC-Registers are opened in a separate memory block
ip
(e)Native Method Area:
Ma
=>The methods which are declared with 'native' keyword in JavaLib are known
as Native methods.
sh
=>These Native methods internally having c or c++ code.
=>These Native methods from the program are separated and loaded onto
ate
(iii)Execution Engine:
(i)Interpreter
PAGE:18
(ii)JIT(Just-In-Time)-Compiler
(i)Interpreter:
=>Interpreter will start the execution process and executes the nonmal
ii
=>when interpreter finds Stream instructions then the execution control is
ath
transferred to the JIT-Compiler.
ip
(ii)JIT(Just-In-Time)-Compiler:
Ma
=>JIT-Compiler will execute Stream instructions or Multimedia Instructions.
sh
ate
nk
============================================================================
Ve
Dt : 21/6/2022
faq:
=>when we have Interpreter in execution process then we can accept the request
PAGE:19
development.
Note:
'Interpreted Language'
========================================================================
ii
Summary:
ath
(i)Method Area where Classes are loaded
ip
(iii)JavaStackArea where methods are executed(Execution Area)
Ma
============================================================================
=>The coding rules followed by the programmer in writing JavaPrograms are known
sh
as Naming Conventions in Java.
ate
(i)packages:
PAGE:20
def : Variables are the dataholders
rule : In Variables and Methods the firstWord must be LowerCase and from second
Ex Variables:
ii
rollNo,panCardNo,phoneNo...
ath
Ex Methods :
getSalary(),readLine(),toUpperCase() ...
ip
(iv)keywords:
Ma
def : Built-in words or Pre-defined words are known as Keywords.
*imp
ate
DataTypes in Java:
=>The types of data which we are expecting as input to JavaPrograms are known
nk
as DataTypes in Java.
1.Primitive DataTypes
2.NonPrimitive DataTypes
1.Primitive DataTypes:
PAGE:21
=>These Primitive DataTypes are categorized into four types:
(a)Integer datatypes
(b)Float datatypes
(c)Character datatype
(d)Boolean datatype
ii
(a)Integer datatypes:
ath
=>The numeric data without decimal point representation is known as Integer
datatype.
ip
Ex:
12,345,567,...
=>Types:
Ma
(i)byte - 1 Byte(16 bits)
sh
(ii)short - 2 Bytes
(iii)int - 4 Bytes
ate
(iv)long - 8 Bytes
nk
(b)Float datatypes:
datatype
Ex:
12.34,67.23,...
=>Types:
(i)float - 4 Bytes
PAGE:22
(ii)double - 8 Bytes
(c)Character datatype:
as Character datatype.
Ex:
ii
'k','u','g',...
ath
=>Types:
char - 2 Bytes
ip
(d)Boolean datatype :
Ma
=>The datatype which is represented in the form of true or false is known as
Boolean datatype.
sh
=>Types:
boolean - 1 bit
ate
------------------------------------------------------------------------------
nk
*imp
2.NonPrimitive DataTypes:
Ve
Referential datatypes
(a)Class
(b)Interface
PAGE:23
(c)Array
(d)Enum
==========================================================================
*imp
ii
as Object Oriented Programming.
ath
=>In Object Oriented Programming we control NonPrimitive datatypes,which means
ip
*imp
define 'Object'?
Ma
=>'Object' is a Storage related to a class holding NonStatic components of
sh
Class.
======================================================================
Ve
faq:
(i)static components
(ii)NonStatic components
PAGE:24
(i)static components:
=>The components which are declared with 'static' keyword are known as Static
components.
=>These static components will get the memory within the class while class
loading.
ii
(ii)NonStatic components:
ath
=>The components which are declared without 'static' keyword are known as
NonStatic components.
ip
=>These NonStatic components will get the memory within the object while
Object creation.
Ma
=========================================================================
Dt : 22/6/2022
sh
*imp
Variables in Java:
ate
=>The variables which are declared with primitive datatypes like byte,short,
PAGE:25
(ii)NonPrimitive DataType variables:
=>The variables which are declared with NonPrimitive datatypes like Class,
reference Variables.
ii
====================================================================
ath
*imp
=>Based on 'static' keyword the variables in Java are categorized into two types:
ip
1.static Variables
2.NonStatic Variables
Ma
1.static Variables:
sh
=>The variables which are declared with static keyword outside the methods are
=>These Static variables will get the memory within the class while class
Ex_Program : DemoVariables1.java
Ve
class DemoVariables1
PAGE:26
System.out.println("====main()====");
Execution flow:
ii
ip ath
Ma
sh
ate
--------------------------------------------------------------------
*imp
nk
2.NonStatic Variables
=>The variables which are declared without static keyword are known as
Ve
NonStatic Variables.
(a)Instance Variables
(b)Local Variables
PAGE:27
(a)Instance Variables:
=>The NonStatic variables which are declared outside the methods are known as
=>These Instance Variables will get the memory within the object while object
ii
(b)Local Variables:
ath
=>The NonStatic variables which are declared inside the methods are known as
ip
=>These Local Variables will get the memory within the Method_frame while
method execution.
Ma
Ex_Program : DemoVariables2.java
sh
class DemoVariables2
{
ate
System.out.println("====main()====");
PAGE:28
}
Execution Flow:
ii
ip ath
Ma
=========================================================================
faq:
sh
define static Local Variables?
ate
faq:
nk
================================================================
*imp
Methods in Java:
PAGE:29
=>Based on Static Keyword the methods are categorized into two types:
1.Static methods
1.Static methods:
=>The methods which are declared with static keyword are known as static
ii
methods or Class methods.
ath
=>These static methods will get the memory within the class while class loading
ip
structure of static methods:
{
Ma
//method_body
sh
}
Rule:
ate
=>Static methods can access static variables directly,but cannot access instance
variables.
nk
PAGE:30
=>The static methods which are already available from JavaLib are known as
=>The static methods which are defined by the user are known as User defined
static method.
ii
-----------------------------------------------------------------------
ath
2.NonStatic methods or Instance methods:
=>The methods which are declared without static keyword are known as NonStatic
ip
methods or Instance methods.
Ma
=>These Instance methods will get the memory within the object while object
{
ate
//method_body
}
nk
Rule:
Variables.
PAGE:31
(ii)User defined Instance methods
=>The instance methods which are already available from JavaLib are known as
ii
(ii)User defined Instance methods:
ath
=>The instance methods which are defined the user are known as User defined
Instance methods.
ip
========================================================================
Assignment:
Ma
Construct the program from the following Layout:
sh
Dt : 23/6/2022
ate
Program : DemoMethods1.java
class DemoMethods1
nk
PAGE:32
System.out.println("The value b:"+b);
ii
System.out.println("The value b:"+b);
ath
}
ip
{
Ma
DemoMethods1 ob = new DemoMethods1();//Object Creation
ob.m1();//Instance method_call
DemoMethods1.m2();//Static method_call
sh
}
}
ate
Execution flow:
nk
Ve
PAGE:33
ii
ip ath
============================================================================
faq:
define parameters?
Ma
=>parameters are the variables which are used to transfer the data from one
sh
method to another method.
=>The methods which are declared without parameters are known as 0-parameter
=>The methods which are declared with parameters are known as Parameterized
PAGE:34
methods or Methods with parameters.
faq:
define return_type?
=>return_type specify the methods will return the value after method execution
ii
or not.
ath
=>Based on return_type methods are categorized into two types:
(i)Non-Return_type methods
ip
(ii)Return_type methods
(i)Non-Return_type methods:
Ma
=>The methods which will not return the value after method execution are known
sh
as Non-Return_type methods.
=>The methods which are declared with 'void' are known as Non-Return_type
ate
methods.
nk
(ii)Return_type methods:
=>The methods which will return the value after method execution are known as
Ve
Return_type methods.
=>The methods which are declared without 'void' are known as Return_type
=>we use 'return' statement to return the value after method execution.
PAGE:35
==================================================================
*imp
Types of Classes:
ii
ath
(a)User defined classes:
=>The classes which are defined by the programmer are known as User defined
ip
classes.
Ex:
Display
Ma
DemoVariable1
sh
...
=>The classes which are already constructed and available from JavaLib are
Ex:
System
Ve
String
Scannner
...
=========================================================================
*imp
PAGE:36
Reading input to Java Programs:
1.nextByte()
2.nextShort()
3.nextInt()
ii
4.nextLong()
ath
5.nextFloat()
6.nextDouble()
ip
7.nextBoolean()
8.nextLine()
Ma
=>These methods are NonStatic methods and will get the memory within the
syntax:
byte b = s.nextByte();
PAGE:37
syntax:
short v = s.nextShort();
syntax:
int i = s.nextInt();
ii
ath
public long nextLong();
syntax:
ip
long l = s.nextLong();
syntax:
nk
double d = s.nextDouble();
Ve
syntax:
boolean b = s.nextBoolean();
PAGE:38
syntax:
----------------------------------------------------------------
Ex_Program:
wap to read and display user details like name,mailId and phNo?
ii
Program : DemoMethods2.java
ath
import java.util.Scanner;
class DemoMethods2
ip
{
{
Ma
Scanner s = new Scanner(System.in);
sh
System.out.println("Enter the Name:");
System.out.println("====UserDetails===");
System.out.println("Name="+name);
System.out.println("MailId="+mailId);
System.out.println("PhoneNo="+phNo);
PAGE:39
}
==================================================================
ii
ip ath
Ma
sh
ate
nk
Ve
PAGE:40
Dt : 24/6/2022
Execution flow:
ClassFiles:
DemoMethods2.class
Scanner.class(Built-in class)
ii
ip ath
Ma
sh
ate
nk
Ve
================================================================
Note:
=>If we read String data after reading numeric data,the String data will be
Skipped in reading.
PAGE:41
=>This can be overcomed using the following parse methods:
byte b = Byte.parseByte(s.nextLine());
short sh = Short.parseShort(s.nextLine());
int i = Integer.parseInt(s.nextLine());
long l = Long.parseLong(s.nextLine());
float f = Float.parseFloat(s.nextLine());
ii
double d = Double.parseDouble(s.nextLine());
ath
===============================================================
Note:
ip
=>In the process of Constructing JavaApplications we must be SubClasses and
one MainClass.
Ma
SubClass - Other than MainClass and holding Variables and methods
Ex_Program : Wap to read two integer values and perform arithmetic operation
ate
import java.util.Scanner;
nk
class Addition
{
Ve
return x+y;
PAGE:42
class Subtraction
return x-y;
ii
}
ath
class Multiplication
ip
int mul(int x,int y)
return x*y;
Ma
}
sh
}
class Division
ate
return (float)x/y;//TypeCasting
Ve
class ModDivision
PAGE:43
{
return x%y;
ii
public static void main(String[] args)
ath
{
ip
System.out.println("Enter the Interger value1:");
int v1 = s.nextInt();
Ma
System.out.println("Enter the Interger value2:");
int v2 = s.nextInt();
sh
System.out.println("====Choice====");
System.out.println("1.add\n2.sub\n3.mul\n4.div\n5.modDiv");
ate
switch(choice)
{
Ve
case 1:
int r1 = ad.add(v1,v2);
System.out.println("Sum:"+r1);
break;
PAGE:44
case 2:
int r2 = sb.sub(v1,v2);
System.out.println("Sub:"+r2);
break;
case 3:
ii
Multiplication ml = new Multiplication();
ath
int r3 = ml.mul(v1,v2);
System.out.println("Mul:"+r3);
ip
break;
case 4:
Ma
Division dv = new Division();
float r4 = dv.div(v1,v2);
sh
System.out.println("Div:"+r4);
break;
ate
case 5:
int r5 = md.modDiv(v1,v2);
System.out.println("ModDiv:"+r5);
Ve
break;
default:
System.out.println("Invalid Choice...");
}//end of switch
PAGE:45
}
===========================================================================
Assignment:
wap to read two integer values and perforn the following operations based on
User Choice:
1.Greater
ii
2.Smaller
ath
SubClasses : Greater,Smaller
ip
MainClass : DemoMethods4
Ma
==================================================================
Note:
PAGE:46
Dt : 25/6/2022
ClassFiles:
Addition.class
Subtraction.class
Multiplication.class
ii
Division.class
ath
ModDivision.class
DemoMethods3.class(MainClass)
ip
Ma
sh
ate
nk
Ve
=====================================================================
faq:
define switch-case?
PAGE:47
multiple available options or cases.
syntax:
switch(value)
case 1 : statements;
break;
ii
case 2 : statements;
ath
break;
ip
.
case n : statements;
break;
Ma
default : statements;
sh
}
ate
Behaviour:
is matched with any available option then the statements are executed.
execution.
=>when the switch-value is not matched with any available options or cases then
=======================================================================
Assignment-1 :
PAGE:48
wap to read employee basic Sal and calaculate totSal?
totSal = bSal+HRA+DA;
DA = 63% of bSal
ii
Note:
ath
=>bSal must be min 12000/-
ip
SubClass : EmployeeSalary
=>double calTotSal(bSal)
Ma
MainClass : DemoMethods5
sh
====================================================================
Assignment-2:
ate
wap to read six subject marks and Calculate totMarks,percentage and result.
nk
result :
=>Else, Fail
PAGE:49
SubClass : StudentResult
=>String calculate(per)
Note:
=>If all the Sub marks are in b/w 0 to 100,then calculate totMarks,percentage
result.
ii
======================================================================
ip ath
Ma
sh
ate
nk
Ve
PAGE:50
Dt : 29/6/2022
Packages in Java:
1.Built-in packages
ii
ath
1.Built-in packages:
=>The packages which are already constructed and available from JavaLib are
ip
known as Pre-defined packages or Built-in packages.
java.lang
Ma
=>The following are some important Built-in packages related to CoreJava:
*imp
nk
=>The packages which are defined by the programmer are known as User defined
Ve
syntax:
package package_name;
=========================================================================
PAGE:51
*imp
step-1 : Open IDE Eclipse,while opening name the workspace and click 'launch'
ii
step-3 : Create packages in 'src'
ath
Right Click on 'src'->new->package,name the package and click 'finish'
ip
step-4 : Create classes in packages
Ma
RightClick on package->new->Class,name the class and click 'finish'
PAGE:52
ii
ip ath
Ma
Ex:
sh
EmployeeSalary.java
package test;
ate
}
Ve
DemoMethods5.java(MainClass)
package maccess;
import java.util.Scanner;
import test.EmployeeSalary;
PAGE:53
Scanner s = new Scanner(System.in);
int bS = s.nextInt();
if(bS>=12000)
ii
double totSal = es.calTotSal(bS);//Method_call
ath
System.out.println("BSal:"+bS);
System.out.println("TotSal:"+totSal);
ip
}//end of if
else
{
Ma
System.out.println("Invalid bSal...");
sh
}
s.close();
ate
}
nk
=====================================================================
Ex:
Ve
StudentResult.java
package test;
public class StudentResult {
public String calculate(float per) {
if(per>=70 && per<=100) {
return "Distiction";
}
else if(per>=60 && per<70) {
return "FirstClass";
PAGE:54
}
else if(per>=50 && per<60) {
return "SecondClass";
}
else if(per>=35 && per<50) {
return "ThirdClass";
}
else {
return "Fail";
}
}
ii
}
ath
DemoMethods5.java(MainClass)
package maccess;
ip
import java.util.Scanner;
import test.StudentResult;
int i=1,totMarks=0;
ate
while(i<=6)
{
nk
if(sub<0 || sub>100)
System.out.println("Invalid Marks...");
PAGE:55
totMarks=totMarks+sub;
i++;
}//end of loop
System.out.println("Total Marks:"+totMarks);
System.out.println("Per:"+per);
ii
StudentResult sr = new StudentResult();
ath
String result = sr.calculate(per);//MethodCall
System.out.println("Result:"+result);
ip
s.close();
}
}
Ma
======================================================================
sh
ate
nk
Ve
PAGE:56
Dt : 30/6/2022
faq:
ii
ath
(i)Using 'import package_name.CName/IName; '
ip
(i)Using 'import package_name.CName/IName; '
Ma
=>In this importing process we specify the CName or IName to make aavailable
Ex:
ate
import java.util.Scanner;
import test.EmployeeSalary;
nk
=>In this importing process all the classes and interfaces from the package
Ex:
import java.util.*;
PAGE:57
import test.*;
ii
ath
Ex:
ip
============================================================
Ma
faq:
syntax:
ate
Ex:
nk
Advantage:
=============================================================================
faq:
PAGE:58
define sqrt() method?
=>sqrt() is Built-in static method from java.lang.Math class and which is used
Method Signature:
ii
ip ath
Ma
sh
ate
nk
syntax:
Ex:
DemoStaticImport.java(MainClass)
package maccess;
import java.util.Scanner;
PAGE:59
import static java.lang.Math.*;
public class DemoStaticImport {
public static void main(String[]
args) {
Scanner s = new
Scanner(System.in);
System.out.println("Enter the
ii
value:");
ath
double val = s.nextDouble();
double result =
sqrt(val);//method_call
ip
System.out.println("SQRT of Ma
"+val+" is "+result);
s.close();
}
}
sh
ate
o/p:
123
nk
=========================================================================
Ve
faq:
folder.(Java project)
PAGE:60
(a)public
(b)private
(c)protected
(d)default
(a)public:
ii
=>'public' programming components are accessed within the Project.
ath
(b)private:
ip
(c)protected:
Ma
=>'protected' programming components are accessed within the package.
Note:
sh
=>'protected' programming components can be accessed by the ChildClass
(d)default:
nk
=>The programming components which are declared without any access modifiers
=>The default programming components are accessed only within the package.
Diagram:
PAGE:61
ii
ip ath
Note:
Ma
=>we must not use 'default' keyword in Class to declare programming components.
(compilation Error)
sh
=======================================================================
ate
*imp
Blocks in Java:
=>The set-of-statements which are declared within the flower brackets and
nk
1.Static blocks
PAGE:62
Dt : 1/7/2022
1.Static blocks:
=>The blocks which are declared with static keyword are known as
static blocks.
syntax:
static
ii
{
ath
//statements;
ip
Behaviour:
Ma
=>The static block is executed only once when the class is used
Note:
Ex :
STest.java
package test;
public class STest {
public static int z=30;
static {
System.out.println("====SubClass Static block====");
System.out.println("The value z:"+z);
PAGE:63
}
}
DemoStaticBlock.java(MainClass)
package maccess;
import test.STest;
public class DemoStaticBlock {
public static int k=10;
public static void main(String[] args) {
STest.z=200;//Using STest for first time
ii
STest.z=400;//Using STest for Second time
ath
System.out.println("===main()====");
System.out.println("The value k:"+k);
}
static {
System.out.println("====MainClass Static block====");
ip
System.out.println("The value k:"+k);
} Ma
}
o/p:
===main()====
-----------------------------------------------------
=>The blocks which are declared without static keyword are known
syntax:
PAGE:64
{
//statements;
Behaviour:
ii
=>Instance block is executed automatically while Object creation.
ath
=>Instance block is executed for all the multiple object creations.
ip
Ex:
ITest.java
package test;
Ma
public class ITest {
public static int a=20;
public int b=30;
sh
{
System.out.println("====SubClass Instance block====");
ate
DemoInstanceBlock.java(MainClass)
Ve
package maccess;
import test.ITest;
public class DemoInstanceBlock {
public static int z=10;
public static void main(String[] args) {
ITest.a=200;//Using ITest for first time
ITest ob1 = new ITest();//Object1
ITest ob2 = new ITest();//Object2
System.out.println("===main()====");
System.out.println("The value z:"+z);
PAGE:65
}
}
o/p:
ii
====SubClass Instance block====
ath
The value a:200
ip
===main()====
ITest.class
ate
DemoInstanceBlock.class(MainClass)
nk
Ve
PAGE:66
ii
ip ath
Ma
======================================================
Note:
==========================================================
Assignment:
nk
Layout Diagram:
PAGE:67
ii
ip ath
Ma
==========================================================
sh
Note:
loading.
nk
=============================================================
faq:
Ve
(i)block
(ii)method
method call.
PAGE:68
=>Blocks will have highest priority in execution than methods.
=============================================================
*imp
Constructors in Java:
ii
=>Constructor is a method having the same name of the class and
ath
executed while object creation,because the constructor call is
ip
Note:
Ma
=>while declaring constructors we must not use return_type,because
Class_name(para_list)
ate
//method_body
nk
}
Ve
two types:
PAGE:69
Ve
nk
ate
sh
PAGE:70
Ma
ip ath
ii
Dt : 2/7/2022
Ex_Program:
ii
CTest1.java
ath
package test;
public class CTest1 {
static
{
ip
System.out.println("====Static block====");
} Ma
{
System.out.println("====Instance block====");
}
public CTest1()//Constructor
{
sh
System.out.println("====CTest1()====");
}
public void dis()//Instance method
ate
{
System.out.println("====dis()=====");
}
}
nk
DemonCon1.java(MainClass)
Ve
package maccess;
import test.CTest1;
public class DemoCon1 {
public static void main(String[] args) {
CTest1 ob = new CTest1();//Con_Call
ob.dis();//method_call
}
}
PAGE:71
o/p:
====Static block====
====Instance block====
====CTest1()====
====dis()=====
ii
==================================================================
ath
faq:
ip
(i)Constructor
(ii)Instance method
Ma
=>Constructor is executed while Object creation process,but Instance method
sh
is executed after Object creation.
ate
faq:
(i)Instance block
(ii)Constructor
Ve
faq:
PAGE:72
(i)static block
(ii)Constructor
=>static block is executed only once when the class is used for first time.
==============================================================
ii
faq:
ath
define default Constructor?
ip
compilation stage is known as 'default constructor'.
faq:
Ma
In wt situation default constructor is added?
sh
=>The class which is declared without any constructors then it is added
====================================================================
Note:
nk
Normal method.
Ve
=====================================================================
*imp
PAGE:73
=>we pass parameters to constructors while Con_Call,which means while
Object creation.
Ex:
CTest2.java
package test;
public class CTest2 {
ii
public CTest2(int x)//Con_with_parameters
ath
{
System.out.println("====CTest2(x)====");
System.out.println("The value x:"+x);
}
public void dis(int y)//Instance_method_with_parameters
ip
{
System.out.println("====dis(y)====");
Ma
System.out.println("The value y:"+y);
}
}
DemoCon2.java(MainClass)
sh
package maccess;
import test.CTest2;
ate
}
Ve
o/p:
====CTest2(x)====
====dis(y)====
PAGE:74
=================================================================
Note:
Ex:
ii
CTest3.java
ath
package test;
public class CTest3 {
public CTest3() {
System.out.println("====0_para_Con====");
ip
}
public CTest3(int x) { Ma
System.out.println("====CTest3(x)====");
System.out.println("The value x:"+x);
}
public CTest3(int y,int z) {
System.out.println("====CTest3(y,z)====");
System.out.println("The value y:"+y);
sh
System.out.println("The value z:"+z);
}
}
ate
DemoCon3.java(MainClass)
package maccess;
nk
import test.CTest3;
public class DemoCon3 {
public static void main(String[] args) {
Ve
o/p:
====0_para_Con====
PAGE:75
====CTest3(x)====
====CTest3(y,z)====
=====================================================================
ii
Advantage of Constructors:
ath
=>Constructors are used to initialize instance variables while Object
creation and which saves the execution time and generate HighPerformance
ip
of an application.
Ma
================================================================
*imp
(c)Using Constructors
nk
=>we can use Object reference variable or Object name to load the data
to the Objects.
Ex:
Product.java
PAGE:76
package test;
public class Product {
public String pCode,pName;
public float pPrice;
public int pQty;
}
Display.java
package test;
public class Display {
ii
public void dis(Product p) {
ath
System.out.println("====ProductDetails====");
System.out.println("ProdCode:"+p.pCode);
System.out.println("ProdName:"+p.pName);
System.out.println("ProdPrice:"+p.pPrice);
System.out.println("ProdQty:"+p.pQty);
ip
} Ma
}
DemoCon4.java(MainClass)
package maccess;
sh
import java.util.Scanner;
ate
import test.Product;
import test.Display;
nk
p.pCode = s.nextLine();
PAGE:77
p.pName = s.nextLine();
p.pPrice = s.nextFloat();
p.pQty = s.nextInt();
ii
d.dis(p);//reference variable as parameter
ath
s.close();
ip
}
o/p:
Ma
Enter the ProdCode:
sh
A121
Mouse
1200
12
====ProductDetails====
ProdCode:A121
ProdName:Mouse
ProdPrice:1200.0
PAGE:78
ProdQty:12
ii
ath
=============================================================
Assignment:
ip
wap to read and display User details?
(uname,pword,fname,lname,addr,maid,phNo)
Ma
Note:
PAGE:79
Dt : 4/7/2022
=>We can use 'Setter methods' to set the data to the objects
and we can also use 'Getter methods' to get the data from the
Objects.
ii
Rule:
ath
=>Every variable in class will have its own 'Setter method' and
'Getter method'.
ip
Ex:
UserDetails.java
Ma
package test;
public class UserDetails {
sh
public String uName,mailId;
public long phNo;
//uName,mailId,phNo are Instance variable memory in Object
ate
frame
this.uName = uName;
}
Ve
PAGE:80
public void setPhNo(long phNo) {
//phNo is local variable memory in method frame
this.phNo = phNo;
}
Display2.java
package test;
public class Display2 {
ii
public void dis(UserDetails ud) {
ath
System.out.println("===Display UserDetails====");
System.out.println("UserName:"+ud.getuName());
System.out.println("MailId:"+ud.getMailId());
System.out.println("PhoneNo:"+ud.getPhNo());
}
ip
}
DemoCon5.java(MainClass)
Ma
package maccess;
import java.util.Scanner;
sh
import test.UserDetails;
ate
import test.Display2;
ud.setuName(s.nextLine());
ud.setMailId(s.nextLine());
PAGE:81
System.out.println("Enter the PhNo:");
ud.setPhNo(s.nextLong());
s.close();
ii
}
ath
o/p:
ip
nit.v
v@gmail.com
Ma
Enter the PhNo:
sh
9898981234
===Display UserDetails====
ate
UserName:nit.v
MailId:v@gmail.com
nk
PhoneNo:9898981234
------------------------------------------------------
Ve
*imp
Note:
PAGE:82
=>In the process of loading data from Local Variables to
============================================
Assignment:
ii
(uname,pword,fname,lname,addr,maid,phNo)
ath
Note:
ip
===========================================================
faq:
faq:
=>The methods which are used to get the data from the Objects
==========================================================
(c)Using Constructors:
Ex:
PAGE:83
BookDetails.java
package test;
public class BookDetails {
public String bCode,bName,bAuthor;
public float bPrice;
public int bQty;
//bCode,bName,bAuthor,bPrice,bQty are Instance variables
public BookDetails(String bCode,String bName,String bAuthor,
float bPrice,int bQty)
{
this.bCode=bCode;
ii
this.bName=bName;
ath
this.bAuthor=bAuthor;
this.bPrice=bPrice;
this.bQty=bQty;
}
public void getBookDeatils()
ip
{
System.out.println("====BookDetails====");
Ma
System.out.println("BCode:"+bCode);
System.out.println("BName:"+bName);
System.out.println("BAuthor:"+bAuthor);
System.out.println("BPrice:"+bPrice);
System.out.println("BQty:"+bQty);
sh
}
}
ate
Display3.java
package test;
nk
DemoCon6.java(MainClass)
package maccess;
import java.util.*;
import test.BookDetails;
PAGE:84
import test.Display3;
String bC = s.nextLine();
ii
System.out.println("Enter the BookName:");
ath
String bN = s.nextLine();
ip
String bA = s.nextLine();
Ma
System.out.println("Enter the BookPrice:");
float bP = s.nextFloat();
s.close();
}
Ve
o/p:
A121
PAGE:85
C-Lang
B-Swamy
1234.56
ii
12
ath
====BookDetails====
BCode:A121
ip
BName:C-Lang
BAuthor:B-Swamy
BPrice:1234.56
Ma
BQty:12
sh
========================================================
Assignmnet-1:
ate
(accNo,custName,balance,accType,hNo,streetName,city,pinCode,
nk
mailId,phNo)
Ve
(iii)Using Constructor
========================================================
PAGE:86
Dt : 5/7/2022
faq:
ii
======================================================
ath
*imp
Strings in Java:
ip
=>The sequenced collection of characters which are represented
Ex:
Ma
"nit","hyd",...
sh
=>In strings the characters are organized based on index values
1.String class
2.StringBuffer class
Ve
3.StringBuilder class
1.String class:
PAGE:87
Constant objects)
Ex:
String s1 = "java";
ii
syntax-2 : using 'new operator process'
ath
Ex:
ip
-------------------------------------------------------
Ex:
System.out.println("str:"+str);
System.out.println("length of str:"+len);
System.out.println("===Display Using index value===");
Ve
for(int i=0;i<=len-1;i++)
{
char ch = str.charAt(i);
System.out.print(ch);
}//end of loop
System.out.println
("\n====Display in reverse based on index value===");
for(int i=len-1;i>=0;i--)
{
char ch = str.charAt(i);
PAGE:88
System.out.print(ch);
}//end of loop
int count=0;
for(int i=0;i<=len-1;i++)
{
char ch = str.charAt(i);
switch(ch)
{
case 'a':
case 'A':count++;
break;
ii
case 'e':
case 'E':count++;
ath
break;
case 'i':
case 'I':count++;
break;
case 'o':
ip
case 'O':count++;
break; Ma
case 'u':
case 'U':count++;
break;
}//end of switch
}//end of loop
System.out.println("\n====Number of Vowels====");
sh
System.out.println("count:"+count);
s.close();
}
ate
o/p:
nk
java program
Ve
str:java program
length of str:12
java program
PAGE:89
margorp avaj
====Number of Vowels====
count:4
----------------------------------------------------
Diagram:
ii
ip ath
Ma
sh
ate
nk
=====================================================
Ve
faq:
syntax:
char ch = str.charAt(index);
PAGE:90
faq:
syntax:
ii
ath
faq:
ip
=>toString() method is used to display the data from the String
object.
syntax:
Ma
String data = str.toString();
sh
Note:
ate
=============================================================
Assignment:
Ve
Count of Vowels =
Count of Consonents =
Count of Numerics =
Sum of Numerics =
PAGE:91
Count of Others =
I/P :
Vowels =6
ii
Consonents = 16
ath
Numerics = 8
Sum = 31
ip
Others =8
Ma
===========================================================
sh
ate
nk
Ve
PAGE:92
Dt : 6/7/2022
faq:
ii
process on Primitive DataTypes:
ath
1.Widening process
2.Narrowing process
ip
1.Widening process:
char->byte->short->int->long->float->double
ate
2.Narrowing process:
nk
double->float->long->int->short->byte->char
-------------------------------------------------------
faq:
define ASCII?
PAGE:93
=>ASCII stands for 'American Standard Code for Information
from the Keyboard.(Every character will have its own ASCII code)
ii
Numbers (0-9) => 48 to 57
ath
Ex:
ip
ASCIIValues.java
package maccess;
public class ASCIIValues {
Ma
public static void main(String[] args) {
System.out.println("====UpperCase Letters====");
for(int i=65;i<=90;i++)
{
sh
char ch = (char)i;//DownCasting-Explicit TypeCasting
System.out.print(ch+" ");
}//end of loop
ate
System.out.println("\n====LowerCase Letters====");
for(int i=97;i<=122;i++)
{
char ch = (char)i;//DownCasting-Explicit TypeCasting
System.out.print(ch+" ");
nk
}//end of loop
System.out.println("\n====Numbers(0-9)====");
for(int i=48;i<=57;i++)
Ve
{
char ch = (char)i;//DownCasting-Explicit TypeCasting
System.out.print(ch+" ");
}//end of loop
}
}
o/p:
PAGE:94
====UpperCase Letters====
ABCDEFGHIJKLMNOPQRSTUVWXYZ
====LowerCase Letters====
abcdefghijklmnopqrstuvwxyz
====Numbers(0-9)====
0123456789
ii
==============================================
ath
Assignment:(Solution)
ip
Program : DemoString2.java
package maccess;
Ma
import java.util.*;
public class DemoString2 {
public static void main(String[] args) {
sh
Scanner s = new Scanner(System.in);
System.out.println("Enter the String:");
String str = s.nextLine();
ate
switch(ch1)
{
case 'a':
Ve
case 'A':count++;
break;
case 'e':
case 'E':count++;
break;
case 'i':
case 'I':count++;
break;
case 'o':
case 'O':count++;
PAGE:95
break;
case 'u':
case 'U':count++;
break;
}//end of switch
int k = (int)ch1;//Generating ASCII Value
if((k>=65 && k<=90) || (k>=97&& k<=122))
{
c1++;
}//end of if
if(k>=48 && k<=57)//ASCII Values of Numbers
ii
{
c2++;
ath
char ch =(char)k;
String st = String.valueOf(ch);//Convert char to
String
int z = Integer.parseInt(st);//Convert String_to_int
sum=sum+z;
ip
}//end if
}//end of loop Ma
System.out.println("Count of Consonents:"+(c1-count));
System.out.println("Count of Vowels:"+count);
System.out.println("Count of Numbers:"+c2);
System.out.println("count of others:"+(len-(c1+c2)));
System.out.println("Sum of numbers:"+sum);
s.close();
sh
}
}
ate
o/p:
Count of Consonents:16
Ve
Count of Vowels:6
Count of Numbers:8
count of others:8
Sum of numbers:31
====================================================
PAGE:96
Assignment-1 :
ii
ath
Assignment-2 :
ip
or not?(without using Built-in method)
Ma
======================================================
process:
(i)concat() method
nk
(ii)'+' symbol
Ve
Program : DemoString3.java
package maccess;
public class DemoString3 {
public static void main(String[] args) {
String s1 = "java";
String s2 = "program";
String s3 = "language";
System.out.println("===Using concat() method===");
String s4 = s1.concat(s2);
PAGE:97
String s5 = s1.concat(s2).concat(s3);
System.out.println("s4:"+s4.toString());
System.out.println("s5:"+s5.toString());
System.out.println("===Using + symbol===");
String s6 = s1+s2;
String s7 = s1+s2+s3;
System.out.println("s6:"+s6.toString());
System.out.println("s7:"+s7.toString());
}
}
ii
ath
o/p:
s4:javaprogram
ip
s5:javaprogramlanguage Ma
===Using + symbol===
s6:javaprogram
s7:javaprogramlanguage
sh
=========================================================
ate
Note:
Immutable objects.
Ve
========================================================
Comparision process.
PAGE:98
(ii)Using 'compareTo()' method
ii
ip ath
Ma
sh
ate
nk
Ve
PAGE:99
Dt : 7/7/2022
boolean result.
Method Signature:
ii
public boolean equalsIgnoreCase(java.lang.String);
ath
syntax:
ip
boolean k = s1.equals(s2);
Note:
Ma
=>In realtime equals() method is used in Authentication process.
sh
(User Identification process)
ate
*imp
integer result.
Ve
Method Signature:
syntax:
PAGE:100
int z = s1.compareTo(s2);
ii
Note:
ath
=>In realtime compareTo() method is used in Sorting process.
ip
Ex : DemoString4.java
package maccess;
import java.util.*;
public class DemoString4 {
Ma
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("Enter the String1:");
sh
String s1 = s.nextLine().trim();
System.out.println("Enter the String2:");
String s2 = s.nextLine().trim();
ate
System.out.println("====equals()====");
boolean k = s1.equalsIgnoreCase(s2);
if(k) {
System.out.println("====Strings are Equal====");
}else {
nk
int z = s1.compareToIgnoreCase(s2);
if(z==0) {
System.out.println("====Strings are Equal====");
}else {
System.out.println("====Strings are Not-Equal====");
}
s.close();
}
}
PAGE:101
o/p:
java
java
====equals()====
ii
====Strings are Equal====
ath
====compareTo()=====
ip
==========================================================
Note:
Ma
=>trim() method is used to remove the spaces before and after
the String.
sh
=>IgnoreCase' specify compare the content without considering
the case.
ate
==========================================================
Ex : DemoString5.java
package maccess;
public class DemoString5 {
public static void main(String[] args) {
String s1 = "java";
String s2 = "java";
String s3 = new String("java");
PAGE:102
String s4 = new String("java");
System.out.println("===String Literal process====");
if(s1==s2) {
System.out.println("String are equal...");
}else {
System.out.println("Strings are Not-Equal..");
}
System.out.println("===new operator process===");
if(s3==s4) {
System.out.println("String are equal...");
}else {
ii
System.out.println("Strings are Not-Equal...");
}
ath
}
}
o/p:
ip
===String Literal process==== Ma
String are equal...
faq:
faq:
PAGE:103
the 'String Constant pool',is any object having the same data
ii
Object available in String Constant pool.
ath
=======================================================
ip
Ma
sh
ate
nk
Ve
========================================================
PAGE:104
Dt : 8/7/2022
2.StringBuffer class:
Objects)
ii
=>The following are the constructors from StringBuffer:
ath
public java.lang.StringBuffer();
public java.lang.StringBuffer(int);
ip
public java.lang.StringBuffer(java.lang.String);
Ma
public java.lang.StringBuffer(java.lang.CharSequence);
Note :
syntax:
nk
capacity 16(Characters).
16==>(16+16+2)===>34==>(34+34+2)==>70...
PAGE:105
=> we can perform insert(),delete() and reverse() opertaions
on StringBuffer object.
Ex : SBuffer1.java
package maccess;
public class SBuffer1 {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer();//Con_Call
ii
System.out.println("default capacity:"+sb.capacity());
ath
System.out.println("length:"+sb.length());
sb.append("program");//adding to buffer object
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
ip
sb.append("language");
System.out.println("sb:"+sb.toString());
Ma
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
sb.append("nit");
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
sh
sb.insert(4,"JAVA");
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
ate
System.out.println("length:"+sb.length());
sb.delete(4,10);
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
nk
System.out.println("length:"+sb.length());
sb.deleteCharAt(7);
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
Ve
System.out.println("length:"+sb.length());
System.out.println("====reverse()====");
System.out.println(sb.reverse());
}
}
o/p:
default capacity:16
PAGE:106
length:0
sb:program
capacity:16
length:7
sb:programlanguage
capacity:16
ii
length:15
ath
sb:programlanguagenit
capacity:34
ip
length:18
sb:progJAVAramlanguagenit
capacity:34
Ma
length:22
sh
sb:progmlanguagenit
capacity:34
ate
length:16
sb:progmlaguagenit
nk
capacity:34
length:15
Ve
====reverse()====
tinegaugalmgorp
========================================================
syntax:
PAGE:107
StringBuffer sb = new StringBuffer(4);
creation.
Ex:SBuffer2.java
ii
package maccess;
ath
public class SBuffer2 {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer(4);//Con_Call
System.out.println("default capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
ip
sb.append("java");
System.out.println("sb:"+sb.toString());
Ma
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
sb.append("N");
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
sh
}
ate
o/p:
nk
default capacity:4
length:0
Ve
sb:java
capacity:4
length:4
sb:javaN
capacity:10
PAGE:108
length:5
===========================================================
syntax:
ii
capacity equal to "16 + length of String passed as parameter".
ip ath
Ma
sh
ate
Ex : SBuffer3.java
package maccess;
nk
System.out.println("default capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
sb.append("HYD");
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
sb.deleteCharAt(0);
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
PAGE:109
sb.append("languageprogramming");
System.out.println("sb:"+sb.toString());
System.out.println("capacity:"+sb.capacity());
System.out.println("length:"+sb.length());
}
}
o/p:
default capacity:19
ii
length:3
ath
sb:NITHYD
capacity:19
ip
length:6
sb:ITHYD
capacity:19
Ma
length:5
sh
sb:ITHYDlanguageprogramming
capacity:40
ate
length:24
===========================================================
nk
syntax:
Ve
=>In this syntax one StringBuffer object will hold the reference
PAGE:110
"16+ length of Strings available in referred objects"
ii
ip ath
Ex : SBuffer4.java
package maccess;
public class SBuffer4 {
Ma
public static void main(String[] args) {
StringBuffer sb1 = new StringBuffer("JAVA");
sb1.append("NIT");
sh
StringBuffer sb2 = new StringBuffer(sb1);//Con_Call
System.out.println("sb2:"+sb2.toString());
System.out.println("default capacity:"+sb2.capacity());
ate
System.out.println("length:"+sb2.length());
}
}
nk
o/p:
Ve
sb2:JAVANIT
default capacity:23
length:7
========================================================
Assignment-1:
PAGE:111
not?(using predefined method)
Assignment-2:
String?
ii
i/P : "java language program"
ath
o/P : "avaj egaugnal margorp"
====================================================
ip
Ma
sh
ate
nk
Ve
PAGE:112
Dt : 9/7/2022
Note:
faq:
ii
knonw as synchronized classes.
ath
faq:
ip
define synchronized methods?
Ma
=>The methods which are declared with 'synchronized' keyword
====================================================
3.StringBuilder class:
Ve
class:
public java.lang.StringBuilder();
PAGE:113
public java.lang.StringBuilder(int);
public java.lang.StringBuilder(java.lang.String);
public java.lang.StringBuilder(java.lang.CharSequence);
ii
faq:
ath
define NonSynchronized class?
ip
are known as NonSynchronized classes.
Ma
=================================================
Note:
=========================================================
nk
*imp
1.StringTokenizer
2.StringJoiner(Java8 - version)
1.StringTokenizer:
PAGE:114
which is used to break the given String into pieces(tokens)
based on delimiter.
'StringTokenizer':
(i)hasMoreTokens()
(ii)nextToken()
ii
(iii)countTokens()
ath
(i)hasMoreTokens():
ip
=>This method will check the token is available or not,and
Method Signature:
Ma
public boolean hasMoreTokens();
sh
(ii)nextToken():
ate
Method Signature:
(iii)countTokens():
Method Signature:
PAGE:115
syntax:
Ex:
DemoTokenizer.java
package maccess;
import java.util.*;
ii
public class DemoTokenizer {
ath
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("Enter the String:");
String str = s.nextLine();
StringTokenizer ob = new StringTokenizer(str," ");
ip
System.out.println("====Number of Tokens===");
int count = ob.countTokens(); Ma
System.out.println("Count:"+count);
System.out.println("====Display Tokens===");
while(ob.hasMoreTokens())
{
String tk = ob.nextToken();//Taking the token
System.out.println(tk.toString());
sh
System.out.println("No of Tokens:"+ob.countTokens());
}//end of loop
s.close();
ate
}
}
nk
o/p:
java program
====Number of Tokens===
Count:2
====Display Tokens===
java
PAGE:116
No of Tokens:1
program
No of Tokens:0
Diagram:
ii
ip ath
Ma
sh
==================================================
ate
*imp
2.StringJoiner(Java8 - version)
delimiter.
(java.lang.CharSequence);
PAGE:117
(java.lang.CharSequence);
(java.util.StringJoiner);
syntax:
ii
StringJoiner sj = new StringJoiner("delimiter");
ath
===========================================================
ip
Ma
sh
ate
nk
Ve
PAGE:118
Dt : 11/7/2022
Ex : DemoJoiner.java
package maccess;
import java.util.*;
public class DemoJoiner {
public static void main(String[] args) {
StringJoiner sj1 = new StringJoiner("/");
sj1.setEmptyValue("StringJoiner is empty...");
System.out.println("sj1:"+sj1.toString());
sj1.add("12");
ii
sj1.add("July");
ath
sj1.add("2022");
System.out.println("sj1:"+sj1.toString());
StringJoiner sj2 = new StringJoiner("-");
sj2.add("SRN");
sj2.add("HYD");
ip
sj2.add("612345");
System.out.println("sj2:"+sj2.toString());
Ma
sj1.merge(sj2);
System.out.println("sj1:"+sj1.toString());
System.out.println("length:"+sj1.length());
}
}
sh
o/p:
ate
sj1:StringJoiner is empty...
sj1:12/July/2022
nk
sj2:SRN-HYD-612345
sj1:12/July/2022/SRN-HYD-612345
Ve
length:27
=========================================================
Note:
PAGE:119
======================================================
faq:
define iClasses?
======================================================
ii
*imp
ath
WrapperClasses in Java:
ip
used to make Primitive datatypes available in the form of objects
List of WrapperClasses:
ate
DataTypes WrapperClass
nk
byte Byte
short Short
Ve
int Integer
long Long
float Float
double Double
char Character
PAGE:120
boolean Boolean
faq:
ii
ath
Note:
ip
=>The following are the list of Constructors from WrapperClasses:
WrapperClass List-of-Constructors
Ma
Byte Byte(byte),Byte(String)
sh
Short Short(short),Short(String)
Integer Integer(int),Integer(String)
ate
Long Long(long),Long(String)
Float Float(float),Float(double),Float(String)
nk
Double Double(double),Double(String)
Character Character(char)
Ve
Boolean Boolean(boolean),Boolean(String)
Ex:
PAGE:121
DemoWrapperClass1.java
package test;
public class DemoWrapperClass1 {
public static void main(String[] args) {
//Boxing Process
Integer ob1 = new Integer(12);//Con_call_int
Integer ob2 = new
Integer("13");//Con_Call_int_in_String_form
Float ob3 = new Float(12.34F);//Con_Call_with_float
Float ob4 = new Float(123.45);//Con_Call_with_double
Float ob5 = new
ii
Float("234.56");//Con_Call_with_float_in_String
ath
Character ob6 = new Character('A');//Con_Call_with_char
Boolean ob7 = new Boolean(true);//Con_Call_with_boolean
Boolean ob8 = new
Boolean("false");//Con_Call_with_boolean_in_String
ip
System.out.println("====Data from Objects====");
System.out.println("ob1:"+ob1.toString());
Ma
System.out.println("ob2:"+ob2.toString());
System.out.println("ob3:"+ob3.toString());
System.out.println("ob4:"+ob4.toString());
System.out.println("ob5:"+ob5.toString());
System.out.println("ob6:"+ob6.toString());
System.out.println("ob7:"+ob7.toString());
sh
System.out.println("ob8:"+ob8.toString());
}
ate
o/p:
nk
ob1:12
Ve
ob2:13
ob3:12.34
ob4:123.45
ob5:234.56
ob6:A
PAGE:122
ob7:true
ob8:false
ii
ip ath
Ma
======================================================
PAGE:123
public boolean booleanValue();
Ex:
DemoWrapperClass2.java
package test;
public class DemoWrapperClass2 {
public static void main(String[] args) {
//Boxing Process
ii
Integer ob1 = new Integer(12);//Con_call_int
ath
Float ob2 = new Float(12.34F);//Con_Call_with_float
Character ob3 = new Character('A');//Con_Call_with_char
Boolean ob4 = new Boolean(true);//Con_Call_with_boolean
//UnBoxing process
int i = ob1.intValue();
ip
float f = ob2.floatValue();
char ch = ob3.charValue(); Ma
boolean b = ob4.booleanValue();
System.out.println("====Display Values====");
System.out.println("Integer value:"+i);
System.out.println("Float value:"+f);
System.out.println("Character value:"+ch);
sh
System.out.println("Boolean value:"+b);
}
ate
o/p:
nk
====Display Values====
Integer value:12
Ve
Float value:12.34
Character value:A
Boolean value:true
========================================================
PAGE:124
Dt : 12/7/2022
faq:
as AutoBoxing process.
ii
Note:
ath
=>In AutoBoxing process the Primitive DataType values are
ip
faq:
Ex : DemoWrapperClass3.java
package test;
public class DemoWrapperClass3 {
nk
System.out.println("====Display Values====");
System.out.println("Integer value:"+i);
PAGE:125
System.out.println("Float value:"+f);
System.out.println("Character value:"+ch);
System.out.println("Boolean value:"+b);
}
}
====================================================
faq:
ii
why we have to make Primitive DataType values available in the
ath
form of objects?
ip
Hibernate with JPA,Spring-JDBC,... will work only with objects
Ma
because of this reason we have to make Primitive DataTypes
---------------------------------------------------------
sh
Note:
'Imutable Objects'.
==========================================================
nk
*imp
RelationShips in Java:
Ve
Java.
1.References
2.Inheritance
PAGE:126
3.InnerClasses
1.References:
ii
known 'Objects interlinking process'.
ath
Advantage:
ip
=>The methods of one object can access the members of another
package test;
ate
Employee.java
Ve
package test;
public class Employee {
public String id,name,desg;
public Address ad;
public Employee(Address ad) {
this.ad=ad;
}
}
ReadInput.java
PAGE:127
package test;
import java.util.Scanner;
public class ReadInput {
public void read(Scanner s,Employee e)
{
System.out.println("Enter the EmpId:");
e.id = s.nextLine();
System.out.println("Enter the EmpName:");
e.name = s.nextLine();
System.out.println("Enter the EmpDesg:");
e.desg = s.nextLine();
ii
System.out.println("Enter the HNO:");
e.ad.hNo = s.nextLine();
ath
System.out.println("Enter the SName:");
e.ad.sName = s.nextLine();
System.out.println("Enter the City:");
e.ad.city = s.nextLine();
System.out.println("Enter the PinCode:");
ip
e.ad.pinCode = s.nextInt();
} Ma
}
Display.java
package test;
sh
public class Display {
public void dis(Employee e) {
System.out.println("====EmployeeDetails===");
ate
System.out.println("Id:"+e.id);
System.out.println("Name:"+e.name);
System.out.println("Desg:"+e.desg);
System.out.println("HNo:"+e.ad.hNo);
nk
System.out.println("SName:"+e.ad.sName);
System.out.println("City:"+e.ad.city);
System.out.println("PinCode:"+e.ad.pinCode);
Ve
}
}
DemoRef1.java(MainClass)
package maccess;
import test.*;
PAGE:128
import java.util.*;
ii
ReadInput ob = new ReadInput();
ath
ob.read(s, e);
ip
d.dis(e);
}
}
Ma
Diagram:
sh
ate
nk
Ve
PAGE:129
ii
ip ath
Ma
sh
=============================================================
ate
nk
Ve
PAGE:130
Dt : : 13/7/2022
Ex-2:
Product.java
package test;
public class Product {
public String pCode,pName;
}
ii
ReadInput.java
ath
package test;
import java.util.*;
public class ReadInput {
public Product p;
ip
public ReadInput(Product p) {
this.p=p; Ma
}
public void read(Scanner s) {
System.out.println("Enter the ProdCode:");
p.pCode = s.nextLine();
System.out.println("Enter the ProdName:");
p.pName = s.nextLine();
sh
}
}
ate
Display.java
package test;
public class Display {
nk
public Product p;
public Display(Product p) {
this.p=p;
Ve
}
public void dis() {
System.out.println("====ProductDetails====");
System.out.println("ProdCode:"+p.pCode);
System.out.println("ProdName:"+p.pName);
}
}
DemoRef2.java(MainClass)
PAGE:131
package maccess;
import test.*;
import java.util.*;
ii
Product p = new Product();
ath
ReadInput ob = new ReadInput(p);
ip
ob.read(s);
d.dis();
s.close();
Ma
}
sh
}
o/p:
ate
A121
nk
Mouse
Ve
====ProductDetails====
ProdCode:A121
ProdName:Mouse
diagram:
PAGE:132
ii
ip ath
=========================================================
Note:
Ma
=>Multiple Objects can hold the reference of same object.
Assignment:
ate
Layout:
nk
Ve
PAGE:133
ii
ip ath
==========================================================
Ma
*imp
2.Inheritance in Java:
to interlink classes.
nk
Diagram:
Ve
PAGE:134
ii
ath
syntax:
ip
class A Ma
{
/PClass_body
}
sh
class B extends A
ate
//CClass_body
}
nk
Ve
because the ChildClass object will hold the members of both PClass
and CClass.
=====================================================
PAGE:135
Case-3 : Constructors from the PClass or SuperClass
=>All the NonStatic members of PClass will get the memory within
ii
Ex:
ath
PClass.java
package test;
public class PClass {
ip
public int a=10;
public void m1() { Ma
System.out.println("====PClass m1()====");
System.out.println("The value a:"+a);
}
{
System.out.println("====PClass Instance block====");
sh
System.out.println("The value a:"+a);
}
}
ate
CClass.java
package test;
nk
System.out.println("====CClass m2()====");
System.out.println("The value b:"+b);
}
{
System.out.println("====CClass InStance block====");
System.out.println("The value b:"+b);
}
}
PAGE:136
DemoInheritance1.java(MainClass)
package maccess;
import test.*;
public class DemoInheritance1 {
public static void main(String[] args) {
CClass ob = new CClass();//Object for ChildClass
ob.m1();//PClass_method_call
ob.m2();//CClass_method_call
}
}
ii
ath
o/p:
ip
====CClass InStance block==== Ma
The value b:20
====PClass m1()====
ClassFiles:
Ve
PClass.class
CClass.class
DemoInheritance1.class(MainClass)
PAGE:137
Ve
nk
ate
sh
PAGE:138
Ma
ip ath
ii
=============================================================
Dt : 14/7/2022
Note:
ii
components of PClass will get the memory first and then the
ath
NonStatic components of CClass will get the memory.
ip
access the members of CClass.
Ma
=======================================================
=>The Static members of PClass will get the memory within the
sh
PClass,but can be accessed with CClass_name
ate
Ex:
PClass.java
nk
package test;
public class PClass {
public static int a=10;
Ve
PAGE:139
CClass.java
package test;
public class CClass extends PClass{
public static int b=10;
public static void m2() {
System.out.println("====CClass m2()====");
System.out.println("The value b:"+b);
}
static {
System.out.println("====CClass static block====");
System.out.println("The value b:"+b);
ii
}
ath
}
DemoInheritance2.java(mainClass)
ip
package maccess;
import test.*; Ma
public class DemoInheritance2 {
public static void main(String[] args) {
System.out.println("*****Using Class*****");
CClass.m1();//PClass method_call
CClass.m2();//CClass method_call
sh
System.out.println("****Using Object****");
CClass ob = new CClass();
ob.m1();
ate
ob.m2();
}
}
nk
o/p:
*****Using Class*****
Ve
====PClass m1()====
PAGE:140
The value b:10
====CClass m2()====
o/p:
ii
====Using Object====
ath
====PClass static block====
ip
====CClass static block====
====PClass m1()====
Ma
The value a:10
sh
====CClass m2()====
ClassFiles:
PClass.class
CClass.class
DemoInheritance2.class(mainClass)
PAGE:141
ii
ip ath
Ma
Execution flow of above program:(using Object)
ClassFiles:
sh
PClass.class
CClass.class
ate
DemoInheritance2.class(mainClass)
nk
Ve
PAGE:142
ii
ip ath
Ma
=======================================================
faq:
sh
define Empty Object reference?
faq:
faq:
PAGE:143
variable?
===================================================
*imp
ii
Case-3 : Constructors from the PClass or SuperClass
ath
(i)0-parameter constructor from the PClass or SuperClass.
ip
=>when we have 0-parameter constructor in PClass then the
Ma
compiler at compilation stage will add super() to the CClass
PClass.java
ate
package test;
public class PClass {
public PClass() {
System.out.println("===PClass()====");
nk
}
}
Ve
CClass.java
package test;
public class CClass extends PClass{
public CClass() {
super();
System.out.println("===CClass()===");
}
}
PAGE:144
DemoInheritance3.java(MainClass)
package maccess;
import test.*;
public class DemoInheritance3 {
public static void main(String[] args) {
CClass ob = new CClass();//CClass_Con_call
}
}
ii
o/p:
ath
===PClass()====
===CClass()===
---------------------------------------------------------
ip
Ma
sh
ate
nk
Ve
PAGE:145
Dt : 15/7/2022
Diagram:
ii
ip ath
Ma
(ii)Parameterized constructor in PClass/SuperClass
sh
=>when we have parameterized constructor in PClass then
Ex:
PClass.java
Ve
package test;
public class PClass {
public PClass(int x) {
System.out.println("====PClass(x)====");
System.out.println("The value x:"+x);
}
}
CClass.java
PAGE:146
package test;
public class CClass extends PClass{
public CClass(int x) {
super(x);//PClass Con_Call
}
}
DemoInheritance4.java(MainClass)
package maccess;
ii
import java.util.*;
ath
import test.*;
ip
public static void main(String[] args) {
s.close();
ate
}
nk
o/p:
Ve
121
====PClass(x)====
----------------------------------------------------------
PAGE:147
faq:
=====================================================
ii
faq:
ath
define Method Overriding process?
ip
then PClass method is replaced by CClass method while object
Ma
creation process is known as Method Overriding process.
same return_type
sh
same method_name
same para_list
ate
same para_type
nk
Diagram:
PAGE:148
ii
ip ath
Ma
Ex:
sh
PClass.java
ate
package test;
public class PClass {
public void m(int x) //Overrided_method
{
nk
System.out.println("====PClass m(x)====");
System.out.println("The value x:"+x);
}
}
Ve
CClass.java
package test;
public class CClass extends PClass{
public void m(int x) //Overriding method
{
System.out.println("====CClass m(x)====");
System.out.println("The value x:"+x);
PAGE:149
}
}
DemoInheritance5.java(MainClass)
package maccess;
import test.*;
public class DemoInheritance5 {
public static void main(String[] args) {
CClass ob = new CClass();
ob.m(121);
ii
}
ath
}
o/p:
ip
====CClass m(x)====
in classes.
nk
faq:
Note:
PAGE:150
=>Method Hiding means the execution control cannot reach
Ex:
PClass.java
ii
package test;
ath
public class PClass {
public static void m(int x) //memory in Class Hided method
{
System.out.println("====PClass m(x)====");
System.out.println("The value x:"+x);
ip
}
} Ma
CClass.java
package test;
public class CClass extends PClass{
sh
public static void m(int x) //memory in Class
{
System.out.println("====CClass m(x)====");
ate
DemoInheritance6.java(MainClass)
package maccess;
Ve
import test.*;
public class DemoInheritance6 {
public static void main(String[] args) {
CClass.m(121);
}
}
o/p:
PAGE:151
====CClass m(x)====
Diagram:
ii
ip ath
Ma
========================================================
Summary:
sh
(i)Same Instance method signature in PClass and CClass,is known
==========================================================
CClass.
=============================================================
PAGE:152
Dt : 16/7/2022
faq:
ii
=>we use the following syntax to perform Generalization process:
ath
PClass ob = new CClass();
ip
Diagram:
Ma
sh
ate
nk
Ve
Ex:
PClass.java
package test;
public class PClass {
public void m1(int x) {
System.out.println("====PClass m1(x)====");
System.out.println("The value x:"+x);
}
PAGE:153
public void m2(int y) {
System.out.println("====PClass m2(y)====");
System.out.println("The value y:"+y);
}
}
CClass.java
package test;
public class CClass extends PClass{
public void m1(int x) {
ii
System.out.println("====CClass m1(x)====");
ath
System.out.println("The value x:"+x);
}
public void m3(int z) {
System.out.println("====CClass m3(z)====");
System.out.println("The value z:"+z);
ip
}
} Ma
DemoInheritance7.java(MainClass)
package maccess;
import test.*;
sh
public class DemoInheritance7 {
public static void main(String[] args) {
PClass ob = (PClass)new CClass();//Generalization
ate
process
ob.m1(12);
ob.m2(13);
//ob.m3(14);//Compilation Error
nk
}
}
Ve
o/p:
====CClass m1(x)====
====PClass m2(y)====
PAGE:154
========================================================
Note:
======================================================
Note:
ii
=>Generalization process is also known as Widening process or
ath
UpCasting process or Implicit TypeCasting process.
ip
PClass ob = (PClass)new CClass();
Ma
=======================================================
faq:
'java.lang.ClassCastException'
Ex:
Cloning process
PAGE:155
De-Serialization process
==========================================================
faq:
ii
process.
ath
Note:
ip
Overloading process.
Ma
Case-1 : Instance method Overloading process
Ex:
PClass.java
package test;
public class PClass {
public void m(int a) {
System.out.println("====PClass m(a)===");
PAGE:156
System.out.println("The value a:"+a);
}
}
CClass.java
package test;
public class CClass extends PClass{
public void m(int a,int b) {
System.out.println("====m(a,b)====");
System.out.println("The value a:"+a);
ii
System.out.println("The value b:"+b);
ath
}
public void m(int a,int b,int c) {
System.out.println("====m(a,b,c)====");
System.out.println("The value a:"+a);
System.out.println("The value b:"+b);
ip
System.out.println("The value c:"+c);
} Ma
}
DemoInheritance8.java(MainClass)
package maccess;
sh
import test.*;
public class DemoInheritance8 {
public static void main(String[] args) {
ate
}
}
Ve
o/p:
====PClass m(a)===
====m(a,b)====
PAGE:157
The value b:14
====m(a,b,c)====
====================================================
ii
faq:
ath
define substring() method?
ip
on index values.
Method Signature:
Ex:
ate
DemoString6.java
package maccess;
import java.util.Scanner;
nk
PAGE:158
o/p:
program
s1:ram
s2:rogr
===========================================================
ii
Assignment:
ath
wap to read and display Student details?
ip
1.read RollNo
Ma
=>RollNo must be 10 digits(Alphanumeric),else invalid rollNo
or not
ate
05 - CSE
04 - ECE
nk
02 - EEE
03 - MECH
Ve
01 - Civil
===========================================================
PAGE:159
Dt : 18/7/2022
Assignment:(Solution)
BranchVarification.java
package maccess;
public class BranchVerification {
public boolean k=false;
public boolean verify(String br) {
//Java7 version
switch(br) {
ii
case "CSE" : k=true;
ath
break;
case "ECE" : k=true;
break;
case "EEE" : k=true;
break;
ip
}//end of switch
return k; Ma
}//end of method
}
RollNoBranchValidation.java
sh
package maccess;
public class RollNoBranchValidation {
public String br = null;
ate
}//end of switch
return br;
}
}
StudentMainClass.java
package maccess;
import java.util.*;
PAGE:160
public class StudentMainClass {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("Enter the RollNo:");
String rollNo = s.nextLine();
if(rollNo.length()==10) {
System.out.println("Enter the StuName:");
String name = s.nextLine();
System.out.println("Enter the Branch:");
String branch = s.nextLine().toUpperCase();
BranchVerification bv = new BranchVerification();
ii
boolean k = bv.verify(branch);
if(k)
ath
{
RollNoBranchValidation ob = new
RollNoBranchValidation();
String br = ob.generate(rollNo.substring(6, 8));
if(br==null) {
ip
System.out.println("Invalid brCode in
rollNo..."); Ma
}//end of if
else
{
if(br.equals(branch)) {
System.out.println("RollNo matched with
branch");
sh
System.out.println("RollNo:"+rollNo);
System.out.println("Name:"+name);
System.out.println("Branch:"+branch);
ate
}//end of if
else
{
System.out.println("RollNo not belongs
nk
to branch");
}
}
}//end of if
Ve
else
{
System.out.println("Invalid Branch...");
}
}else {
System.out.println("Invalid RollNo...");
}
s.close();
}
}
PAGE:161
o/p:
1234560490
Raj
ii
Enter the Branch:
ath
ECE
ip
RollNo:1234560490
Name:Raj
Branch:ECE
Ma
===============================================
sh
faq:
(i)Validation
(ii)Verification
nk
(i)Validation:
Ve
(ii)Verification:
PAGE:162
as Verification process.
=====================================================
=>More than one Static method with same name but differentiated
Overloading process.
ii
ath
Ex:
PClass.java
ip
package test;
public class PClass {
public static void m(int x) {
Ma
System.out.println("===PClass m(x)====");
System.out.println("The value x:"+x);
}
}
sh
CClass.java
ate
package test;
public class CClass extends PClass{
public static void m(int x,int y) {
System.out.println("===CClass m(x,y)====");
System.out.println("The value x:"+x);
nk
}
Ve
}
}
DemoInheritance9.java(MainClass)
PAGE:163
package maccess;
import test.*;
public class DemoInheritance9 {
public static void main(String[] args) {
CClass.m(12);
CClass.m(12,13);
CClass.m(13, 14.56F);
}
}
ii
o/p:
ath
===PClass m(x)====
===CClass m(x,y)====
ip
The value x:12 Ma
The value y:13
===CClass m(x,y)====
===========================================================
faq:
nk
(a)super
Ve
(b)this
(c)super()
(d)this()
(a)super:
PAGE:164
methods from the PClass or SuperClass.
(b)this:
ii
(c)super():
ath
=>'super()' is used to execute constructors from the PClass
or SuperClass
ip
(d)this():
Ma
=>'this()' is used to execute constructors from the Same
Ex:
ate
PClass.java
package test;
public class PClass {
nk
System.out.println("====PClass m(a)====");
System.out.println("The value a:"+a);
}
}
CClass.java
package test;
public class CClass extends PClass{
public int x=30;
PAGE:165
public void m(int a) //Overriding method
{
System.out.println("====CClass m(a)====");
System.out.println("The value a:"+a);
}
public void access(int v1,int v2)
{
System.out.println("The value PClass x:"+super.x);
System.out.println("The value CClass x:"+this.x);
m(v1);
m(v2);
ii
}
}
ath
DemoInheritance10.java(MainClass)
package maccess;
ip
import test.*;
public class DemoInheritance10 { Ma
public static void main(String[] args) {
CClass ob = new CClass();
ob.access(12,13);
}
}
sh
o/p:
ate
====CClass m(a)====
====CClass m(a)====
=======================================================
faq:
PAGE:166
members of Class?
==============================================================
ii
ip ath
Ma
sh
ate
nk
Ve
PAGE:167
Dt : 19/7/20220
Ex:
PClass.java
package test;
public class PClass {
public static int x=100;
public static void m(int p) {
System.out.println("====PClass m(p)====");
System.out.println("The value p:"+p);
ii
}
ath
}
CClass.java
ip
package test;
public class CClass extends PClass{ Ma
public static int x=200;
public static void m(int p) {
System.out.println("====CClass m(p)====");
System.out.println("The value p:"+p);
}
public void access(int v1,int v2) {
sh
System.out.println("PClass value x:"+super.x);
System.out.println("CClass Value x:"+this.x);
super.m(v1);//PClass_method_call
ate
this.m(v2);//CClass_method_call
}
}
nk
DemoInheritance11.java(MainClass)
package maccess;
Ve
import test.*;
public class DemoInheritance11 {
public static void main(String[] args) {
CClass ob = new CClass();
ob.access(12, 13);
}
}
o/p:
PAGE:168
PClass value x:100
====PClass m(p)====
====CClass m(p)====
ii
====================================================
ath
Ex:
PClass.java
ip
package test;
public class PClass {
public PClass(int a,int b) {
Ma
this(a);//Con_Call_from_Same_class_1_para
System.out.println("The value b:"+b);
}
public PClass(int a) {
System.out.println("The value a:"+a);
sh
}
}
ate
CClass.java
package test;
public class CClass extends PClass{
nk
this(a,b,c);//Con_Call_from_Same_Class_3_para
Ve
}
public CClass(int a,int b,int c) {
super(a,b);//PClass_Con_Call_2_para
System.out.println("The value c:"+c);
}
}
PAGE:169
DemoInheritance12.java(MainClass)
package maccess;
import test.*;
public class DemoInheritance12 {
public static void main(String[] args) {
CClass ob = new CClass(11,12,13,14);//Con_Call_4_para
}
}
ii
o/p:
ath
The value a:11
ip
The value d:14 Ma
======================================================
Note:
===================================================
nk
*imp
Types of Inheritances:
Ve
1.Single Inheritance
2.Multiple Inheritance
3.Multi-Level Inheritance
4.Hierarchal Inheritance
5.Hybrid Inheritance
PAGE:170
Diagrams:
ii
ip ath
Ma
sh
ate
nk
=================================================
Ve
1.Single Inheritance
2.Multiple Inheritance
1.Single Inheritance:
PAGE:171
at-a-time is known as Single Inheritance process.
Ex:
above programs
2.Multiple Inheritance:
ii
class at-a-time is known as Multiple Inheritance process.
ath
Note:
ip
=>Multiple Inheritance process using classes in Java is not
Ma
available,because which generate replication of programming
============================================================
ate
Assignment Solution:(References)
nk
Address.java
package test;
Ve
Contact.java
package test;
public class Contact {
public String mailId;
PAGE:172
public long phNo;
}
Result.java
package test;
public class Result {
public int totMarks;
public float per;
public String result;
public void calculate()
ii
{
ath
per = (float)totMarks/6;
if(per>=70 && per<=100) {
result="Distiction";
}
else if(per>=60 && per<70) {
ip
result="FirstClass";
} Ma
else if(per>=50 && per<60) {
result="SecondClass";
}
else if(per>=35 && per<50) {
result= "ThirdClass";
}
sh
else {
result= "Fail";
}
ate
}
}
nk
Student.java
package test;
public class Student {
Ve
PAGE:173
ReadInput.java
package test;
import java.util.*;
public class ReadInput {
public void read(Scanner s,Student stu) {
System.out.println("Enter the rollNo:");
stu.rollNo=s.nextLine();
System.out.println("Enter the Name:");
stu.name=s.nextLine();
ii
System.out.println("Enter the Branch:");
ath
stu.branch=s.nextLine();
System.out.println("Enter the HNo:");
stu.ad.hNo=s.nextLine();
System.out.println("Enter the StreetName:");
stu.ad.sName=s.nextLine();
ip
System.out.println("Enter the City:");
stu.ad.city=s.nextLine();
Ma
System.out.println("Enter the PinCode:");
stu.ad.pinCode=Integer.parseInt(s.nextLine());
System.out.println("Enter the MailId:");
stu.c.mailId=s.nextLine();
System.out.println("Enter the PhNo:");
stu.c.phNo=Long.parseLong(s.nextLine());
sh
System.out.println("====Enter 6 Sub Marks===");
int i=1,totMarks=0;
while(i<=6)
ate
{
System.out.println("Enter the marks of Subject"+i);
int sub = s.nextInt();
if(sub<0 || sub>100)
nk
{
System.out.println("Invalid Marks...");
continue;//skip the below lines from the loop
}
Ve
totMarks=totMarks+sub;
i++;
}//end of loop
stu.r.totMarks=totMarks;
stu.r.calculate();
}
}
Display.java
PAGE:174
package test;
public class Display {
public void dis(Student stu) {
System.out.println("RollNo:"+stu.rollNo);
System.out.println("Name:"+stu.name);
System.out.println("Branch:"+stu.branch);
System.out.println("HNo:"+stu.ad.hNo);
System.out.println("SName:"+stu.ad.sName);
System.out.println("City:"+stu.ad.city);
System.out.println("PinCode:"+stu.ad.pinCode);
System.out.println("MailId:"+stu.c.mailId);
ii
System.out.println("PhNo:"+stu.c.phNo);
System.out.println("TotMarks:"+stu.r.totMarks);
ath
System.out.println("Per:"+stu.r.per);
System.out.println("Result::"+stu.r.result);
}
}
ip
DemoRef3.java(MainClass)
package maccess;
Ma
import test.*;
sh
import java.util.*;
ob1.read(s, stu);
PAGE:175
ob2.dis(stu);
s.close();
=======================================================
ii
ip ath
Ma
sh
ate
nk
Ve
PAGE:176
Dt : 20/7/2022
*imp
Interfaces in Java:
Note:
ii
=>Upto Java7 version interface is a collection of Variables
ath
and abstract methods.
ip
faq:
return_type method_name(para_list);
nk
faq:
Ve
as Concrete methods.
PAGE:177
return_type method_name(para_list)
//method_body
=====================================================
ii
Coding rules of Interface:
ath
Rule-1 : we use 'interface' keyword to declare interfaces.
ip
syntax:
interface Interface_name
Ma
{
sh
//members
}
ate
Note:
Ve
PAGE:178
Rule-4 : The variables which are declared within the interface
Note:
ii
interface_name.
ath
(ii)final variables must be initialized with values and once
ip
(final variables are also known as secured variables or Constant
variables)
Ma
Rule-5 : The methods which are declared within the interface are
sh
automatically NonStatic abstract methods.
ate
Note:
syntax:
PAGE:179
class IClass implements Interface
//members
ii
for abstarct methods of interface,which means the methods are
ath
implemented.
ip
Ma
sh
ate
nk
Ex:
IArithmetic.java
Ve
package test;
public interface IArithmetic
{
public abstract void calculate(int x,int y);
}
Addition.java
package test;
public class Addition implements IArithmetic{
PAGE:180
public void calculate(int x,int y)
{
System.out.println("Sum:"+(x+y));
}
}
DemoInterface1.java(MainClass)
package maccess;
import test.*;
public class DemoInterface1 {
ii
public static void main(String[] args) {
ath
//IArithmetic ob = new IArithmetic();//CompilationError
Addition ob = new Addition();
ob.calculate(12, 13);
}
}
ip
Ma
-----------------------------------------------------------
Non-Implemented methods.
nk
Ve
PAGE:181
ii
ip ath
Ex:
ITest.java Ma
package test;
public interface ITest {
public abstract void m1(int x);
public abstract void m2(int y);
}
sh
IClass.java
ate
package test;
public class IClass implements ITest{
public void m1(int x) //Implemented method
nk
{
System.out.println("====m1(x)====");
System.out.println("The value x:"+x);
}
Ve
PAGE:182
}
}
DemoInterface2.java(MainClass)
package maccess;
import test.*;
public class DemoInterface2 {
public static void main(String[] args) {
IClass ob = new IClass();//Implementation object
ob.m1(12);
ii
ob.m2(13);
ath
ob.m3(14);
}
}
ip
o/p:
====m1(x)====
====m3(z)====
ate
-----------------------------------------------------------
nk
Note:
variables.
---------------------------------------------------------
PAGE:183
Rule-11 : Interface can be implemeted to any number of
implementation classes.
Diagram:
ii
ip ath
Ma
sh
ate
Ex:
IComparable.java
nk
package test;
public interface IComparable {
public abstract int compareTo(int x,int y,int z);
Ve
Greater.java
package test;
public class Greater implements IComparable{
public int compareTo(int x,int y,int z) {
if(x>y && x>z) return x;
else if(y>x && y>z) return y;
PAGE:184
else return z;
}
}
Smaller.java
package test;
public class Smaller implements IComparable{
public int compareTo(int x,int y,int z) {
if(x<y && x<z) return x;
else if(y<x && y<z) return y;
ii
else return z;
ath
}
}
DemoInterface3.java(MainClass)
ip
package maccess; Ma
import java.util.*;
import test.*;
int v1 = s.nextInt();
int v2 = s.nextInt();
int v3 = s.nextInt();
System.out.println("====Choice====");
System.out.println("1.Greater\n2.Smaller");
PAGE:185
switch(s.nextInt()) {
case 1:
System.out.println("Greater value:"+r1);
break;
case 2:
ii
int r2 = new Smaller().compareTo(v1, v2, v3);
ath
System.out.println("Smaller value:"+r2);
break;
ip
default:
Ma
System.out.println("Invalid choice...");
}//end of switch
s.close();
sh
}
}
ate
o/p:
12
13
14
====Choice====
1.Greater
PAGE:186
2.Smaller
Smaller value:12
Dt : 21/7/2022
Assignment-1:
ii
wap to perform Arithmetic operations using Interface as
ath
follows:
ip
Ma
sh
ate
nk
Assignment-2:
Ve
follows:
Layout:
PAGE:187
ii
ip ath
Ma
(i)Read pinNo
=>In the pinNo invalidated for three times then display the
Choice:
Ve
1.WithDraw
2.Deposit
1.WithDraw:
PAGE:188
invalid amt
ii
=>when transaction Successfull
ath
o/p:
Amt withdrawn :
ip
Balance amt :
2.Deposit
Ma
=>read the amt
sh
=>The amt must be greater than 0 and Multiples of 100,else
invalid amt
ate
o/p:
Amt Deposited :
Balance amt :
===============================================================
PAGE:189
Rule-12 : There is no concept of declaring blocks and
constructors in Interfaces.(CompilationError)
ii
Diagram:
ip ath
Ma
sh
ate
nk
Ve
Ex:
ITest1.java
package test;
public interface ITest1 {
public abstract void m1(int x);
}
PAGE:190
ITest2.java
package test;
public interface ITest2 extends ITest1{
public abstract void m2(int y);
}
IClass.java
package test;
public class IClass implements ITest2{
ii
public void m1(int x) {
ath
System.out.println("x:"+x);
}
public void m2(int y) {
System.out.println("y:"+y);
}
ip
}
DemoInterface4.java(MainClass)
Ma
package maccess;
import test.*;
public class DemoInterface4 {
sh
public static void main(String[] args) {
IClass ob = new IClass();
ob.m1(12);
ate
ob.m2(23);
}
}
nk
==========================================================
*imp
Ve
Interfaces:
PAGE:191
(a)static concrete methods(Java8)
ii
in interfaces are known as Static concrete methods,introduced
ath
by Java8 version.
ip
the interface and can be accessed with Interface_name.
Coding rule:
Ma
=>Static concrete methods of Interface are not available to
sh
implementation classes,which means static concrete methods
Diagram:
nk
Ve
PAGE:192
ii
ip ath
Ex:
ITest.java
package test;
Ma
public interface ITest {
public abstract void m1(int x);
public static void m2(int y) {
sh
System.out.println("====static m2(y)===");
System.out.println("The value y:"+y);
}
ate
IClass.java
nk
package test;
public class IClass implements ITest{
public void m1(int x) {
Ve
System.out.println("====m1(x)====");
System.out.println("The value x:"+x);
}
}
DemoInterface5.java(MainClass)
package maccess;
import test.*;
PAGE:193
public class DemoInterface5 {
public static void main(String[] args) {
ITest.m2(121);//Static method_call
//IClass.m2(121);
IClass ob = new IClass();
ob.m1(122);
}
}
o/p:
ii
====static m2(y)===
ath
The value y:121
====m1(x)====
ip
The value x:122
Ma
==========================================================
sh
ate
nk
Ve
PAGE:194
Dt : 22/7/2022
Coding Rule:
ii
=>These default concrete methods are available to
ath
implementation classes and can be accessed with implementation
ip
Ex:
ITest.java
Ma
package test;
public interface ITest {
sh
public abstract void m1(int x);
public default void m2(int y) {
System.out.println("====m2(y)====");
ate
IClass.java
package test;
Ve
DemoInheritance6.java(MainClass)
package maccess;
PAGE:195
import test.*;
public class DemoInheritance6 {
public static void main(String[] args) {
IClass ob = new IClass();//Implementation Object
ob.m1(12);
ob.m2(23);
}
}
o/p:
ii
====m1(x)====
ath
The value x:12
====m2(y)====
ip
The value y:23
Ma
=======================================================
Summary:
Concrete methods.
==========================================================
nk
*imp
PAGE:196
(ii)NonStatic private concrete methods
Coding rule:
ii
Ex:
ath
ITest.java
package test;
public interface ITest {
ip
public abstract void m1(int x);
private void m2(int y) { Ma
System.out.println("===m2(y)====");
System.out.println("The value y:"+y);
}
private static void m3(int z) {
System.out.println("===m3(z)====");
System.out.println("The value z:"+z);
sh
}
public default void access(int y,int z) {
this.m2(y);
ate
ITest.m3(z);
}
}
nk
IClass.java
package test;
Ve
package maccess;
import test.*;
PAGE:197
public class DemoInterface7 {
public static void main(String[] args) {
IClass ob = new IClass();//Implementation object
ob.m1(12);
ob.access(13,14);
}
}
o/p:
ii
===m1(x)===
ath
The value x:12
===m2(y)====
ip
===m3(z)==== Ma
The value z:14
======================================================
Comparision Diagram:
sh
ate
nk
Ve
PAGE:198
====================================================
*imp
Diagrams:
ii
ip ath
Ma
sh
ate
nk
Ve
=====================================================
*imp
PAGE:199
into a class.
Diagram:
ii
ip ath
Ma
Model-2 : Extracting the features from one class and any number
of interfaces)
Diagram:
nk
Ve
PAGE:200
ii
ath
Model-3 : Extracting the features from More than one interface
ip
into an Interface. Ma
(Interface extending from more than one Interface)
Diagram:
sh
ate
nk
Ve
=============================================================
PAGE:201
Dt : 26/7/2022
Ex_Program : Model-1
ITest1.java
package test;
public interface ITest1 {
public void m1(int x);
public static void m2(int y) {
System.out.println("====ITest1 m2(y)====");
System.out.println("The value y:"+y);
ii
}
ath
public default void m3(int z) {
System.out.println("===ITest1 m3(z)====");
System.out.println("The value z:"+z);
}
}
ip
ITest2.java
package test;
Ma
public interface ITest2 {
public void m1(int x);
public static void m2(int y) {
sh
System.out.println("====ITest2 m2(y)====");
System.out.println("The value y:"+y);
}
ate
}
IClass.java
package test;
Ve
DemoMultipleInheritance1.java(MainClass)
PAGE:202
package maccess;
import test.*;
public class DemoMultipleInheritance1 {
public static void main(String[] args) {
IClass ob = new IClass();
ob.m1(12);
ITest1.m2(13);
ITest2.m2(14);
ob.m3(15);
ob.m33(16);
}
ii
}
ath
o/p:
===m1(x)===
ip
The value x:12
====ITest1 m2(y)====
===ITest1 m3(z)====
ate
===ITest1 m33(z)====
nk
=====================================================
Ve
Ex_Program : Model-2
PClass.java
package test;
public class PClass {
public void m1(int x) {
System.out.println("===PClass m1(x)===");
PAGE:203
System.out.println("The value x:"+x);
}
}
ITest.java
package test;
public interface ITest {
public abstract void m2(int y);
}
ii
ath
CClass.java
package test;
public class CClass extends PClass implements ITest{
public void m2(int y) {
ip
System.out.println("===m2(y)===");
System.out.println("The value y:"+y);
Ma
}
}
DemoMultipleInheritance2.java(MainClass)
sh
package maccess;
import test.*;
public class DemoMultipleInheritance2 {
ate
}
}
Ve
o/p:
===PClass m1(x)===
===m2(y)===
PAGE:204
=====================================================
Ex_Program : Model-3
ITest1.java
package test;
public interface ITest1 {
public abstract void m1(int x);
}
ii
ITest2.java
ath
package test;
public interface ITest2 {
public abstract void m2(int y);
}
ip
ITest3.java
package test;
Ma
public interface ITest3 extends ITest1,ITest2{
public abstract void m3(int z);
}
sh
IClass.java
ate
package test;
public class IClass implements ITest3{
public void m1(int x) {
System.out.println("x:"+x);
nk
}
public void m2(int y) {
System.out.println("y:"+y);
Ve
}
public void m3(int z) {
System.out.println("z:"+z);
}
}
DemoMultipleInheritance3.java(MainClass)
package maccess;
PAGE:205
import test.*;
public class DemoMultipleInheritance3 {
public static void main(String[] args) {
IClass ob = new IClass();
ob.m1(12);
ob.m2(13);
ob.m3(14);
}
}
ii
ath
o/p:
x:12
y:13
ip
z:14 Ma
========================================================
Assignment-1:(Solution)
sh
wap to perform Arithmetic operations using Interface .
ate
IArithmetic.java
package test;
nk
Addition.java
package test;
public class Addition implements IArithmetic{
public double calculate(int x,int y) {
return x+y;
}
}
PAGE:206
Subtraction.java
package test;
public class Subtraction implements IArithmetic{
public double calculate(int x,int y) {
return x-y;
}
}
ii
Multiplication.java
ath
package test;
public class Multiplication implements IArithmetic{
public double calculate(int x,int y) {
return x*y;
ip
}
} Ma
Division.java
package test;
public class Division implements IArithmetic{
sh
public double calculate(int x,int y) {
return (double)x/y;
}
ate
ModDivision.java
nk
package test;
public class ModDivision implements IArithmetic{
public double calculate(int x,int y) {
Ve
return x%y;
}
}
DemoInterface8.java(MainClass)
package maccess;
import test.*;
PAGE:207
import java.util.*;
int v1 = s.nextInt();
ii
System.out.println("Enter the Value-2");
ath
int v2 = s.nextInt();
System.out.println("====Choice====");
ip
System.out.println("1.add\n2.sub\n3.mul\n4.div\n5.modDiv");
switch(s.nextInt()) {
Ma
case 1:
sh
System.out.println
break;
case 2:
nk
System.out.println
break;
case 3:
System.out.println
break;
PAGE:208
case 4:
System.out.println
break;
case 5:
System.out.println
ii
("ModDiv:"+new ModDivision().calculate(v1, v2));
ath
break;
default:
ip
System.out.println("Invalid choice...");
}//end of switch
s.close();
Ma
}
sh
}
======================================================
ate
Assignment-2:(Solution)
Balance.java
Ve
package test;
public class Balance {
public double bal=2000;
public void getBalance() {
System.out.println("Balance Amt:"+bal);
}
}
Transaction.java
PAGE:209
package test;
public interface Transaction {
public static final Balance b = new Balance();
public abstract void process(int amt);
}
WithDraw.java
package test;
public class WithDraw implements Transaction{
public void process(int amt) {
ii
if(amt<=b.bal)
ath
{
System.out.println("Amt withDrawn:"+amt);
b.bal=b.bal-amt;
b.getBalance();
System.out.println("Transaction Completed...");
ip
}//end of if
else Ma
{
System.out.println("Insufficient fund....");
}
}
}
sh
Deposit.java
ate
package test;
public class Deposit implements Transaction{
public void process(int amt) {
System.out.println("Amt Deposited:"+amt);
nk
b.bal=b.bal+amt;
b.getBalance();
System.out.println("Transaction Completed...");
}
Ve
CheckPinNo.java
package test;
public class CheckPinNo {
public boolean verify(int pinNo) {
return switch(pinNo) {
case 1111 : yield true;
PAGE:210
case 2222 : yield true;
case 3333 : yield true;
default : yield false;
};
}
}
BankMainClass.java(MainClass)
package maccess;
ii
import java.util.*;
ath
import test.*;
ip
public static void main(String[] args) {
int count=0;
Ma
xyz:
sh
while(true) {
if(k)
{
Ve
System.out.println("====Choice====");
System.out.println("1.WithDraw\n2.Deposit");
switch(s.nextInt()) {
case 1:
PAGE:211
System.out.println("Enter the amt:");
int a1 = s.nextInt();
new WithDraw().process(a1);
}//end of if
ii
else
ath
{
System.out.println("Invalid amt...");
ip
}
case 2:
break xyz;
Ma
System.out.println("Enter the amt:");
sh
int a2 = s.nextInt();
new Deposit().process(a2);
nk
}//end of if
else
Ve
System.out.println("Invalid amt...");
break xyz;
default:
PAGE:212
System.out.println("Invalid choice...");
break xyz;
}//end of switch
}//end of if
else
ii
System.out.println("Invalid pinNo...");
ath
count++;
ip
if(count==3)
{
Ma
System.out.println("Sorry ! Transaction blocked...");
}//end of loop
ate
}
nk
===============================================================
Dt : 27/7/2022
Ve
faq:
PAGE:213
syntax:
break lable_name;
============================================================
faq:
(i)break
ii
(ii)continue
ath
=>'break' is used to stop the switch-case execution and also
ip
=>'continue' is used to skip the lines from the iteration.
Ma
============================================================
faq:
define switch-case-yield?
sh
=>switch-case-yield statement introduced by Java13 version and
syntax:
nk
return switch(value)
{
Ve
PAGE:214
default : yield default_value;
};
Note:
=========================================================
ii
*imp
ath
Generalization using Interfaces:
ip
created holding all the members of Interface and only Overriding
using Interfaces:
sh
syntax:
Ex:
nk
ITest.java
package test;
Ve
IClass.java
PAGE:215
package test;
public class IClass implements ITest{
public void m1(int x) {
System.out.println("===m1(x)===");
System.out.println("x:"+x);
}
public void m3(int z) {
System.out.println("===m3(z)===");
System.out.println("z:"+z);
}
}
ii
ath
DemoInterface10.java(MainClass)
package maccess;
import test.*;
public class DemoInterface10 {
ip
public static void main(String[] args) {
ITest ob = new IClass();//Generalization process
Ma
ob.m1(12);
ob.m2(13);
//ob.m3(14);//Compilation Error
//IClass ob2 = (IClass)new ITest();//Compilation Error
}
}
sh
o/p:
ate
===m1(x)===
x:12
nk
===m2(y)===
y:13
Ve
===========================================================
Note:
(Compilation Error)
===========================================================
PAGE:216
faq:
ii
=>The abstract methods in abstract classes must be declared with
ath
abstarct keyword,which means 'abstract' keyword is manditory.
ip
cannot create object for abstract classes directly.
Ma
=>These abstarct classes are extended to classes using 'extends'
syntax:
(Compilation Error)
Ve
Ex:
AClass.java
package test;
public abstract class AClass {
public abstract void m1(int x);
public void m2(int y) {
System.out.println("====m2(y)====");
System.out.println("y:"+y);
PAGE:217
}
}
EClass.java
package test;
public class EClass extends AClass{
public void m1(int x) {
System.out.println("===m1(x)===");
System.out.println("x:"+x);
}
ii
public void m3(int z) {
ath
System.out.println("===m3(z)===");
System.out.println("z:"+z);
}
}
ip
DemoAbstractClass1.java(MainClass) Ma
package maccess;
import test.*;
public class DemoAbstractClass1 {
public static void main(String[] args) {
System.out.println("====Normal Inheritance====");
sh
EClass ob1 = new EClass();
ob1.m1(12);
ob1.m2(13);
ate
ob1.m3(14);
System.out.println("====Generalization=====");
AClass ob2 = (AClass)new EClass();
ob2.m1(22);
nk
ob2.m2(23);
//ob2.m3(23);//Compilation error
System.out.println("====Specialization====");
//EClass ob3 = (EClass)new AClass();//Compilation error
Ve
o/p:
====Normal Inheritance====
===m1(x)===
PAGE:218
x:12
====m2(y)====
y:13
===m3(z)===
z:14
====Generalization=====
ii
===m1(x)===
ath
x:22
====m2(y)====
ip
y:23
====Specialization====
Ma
=======================================================
*imp
sh
Single Inheritance using AbstractClasses:
ate
Diagrams:
nk
Ve
PAGE:219
ii
ip ath
Ma
======================================================
sh
faq:
(i)Class
(ii)Abstract Class
nk
Instantiated.
faq:
PAGE:220
(i)Interface
(ii)Abstract Class
ii
but variables in abstract classes are user choice.
ath
=>The programming components in Interface are automatically
ip
automatically default.
Ma
===========================================================
Comparision diagram:
sh
ate
nk
Ve
============================================================
PAGE:221
Dt : 28/7/2022
faq:
ii
Abstraction process
ath
============================================================
*imp
ip
InnerClasses in Java:
Ma
=>The process of declaring class inside the class is known as
2.Anonymous InnerClasses
ate
1.Member InnerClasses:
nk
*imp
PAGE:222
(a)Static Member InnerClasses:
Coding rules:
ii
(i)Static member InnerClasses can be declared with both static
ath
members and NonStatic members.
ip
Static members of OuterClass directly,which means they
Ma
cannot access Instance variables of OuterClass directly.
OuterClass_name.InnerClass_name obj =
new OuterClass_name.InnerClass_name();
nk
Ex:
Ve
Ex:
SubClass1.java
package test;
public class SubClass1 {
PAGE:223
public int a=10;
public static int b=20;
public void m1() {
System.out.println("****OuterClass m1()****");
System.out.println("The value a:"+a);
System.out.println("The value b:"+b);
}//end of OuterClass method
public static class SubClass2{
public void m2() {
System.out.println("****InnerClass Instance
m2()****");
ii
//System.out.println("The value a:"+a);
System.out.println("The value b:"+b);
ath
}
public static void m22() {
System.out.println("****InnerClass static m22()****");
//System.out.println("The value a:"+a);
System.out.println("The value b:"+b);
ip
}
}//Static Member InnerClass Ma
}//OuterClass
DemoInnerClass1.java(MainClass)
package maccess;
sh
import test.*;
public class DemoInnerClass1 {
public static void main(String[] args) {
ate
ob2.m2();//InnerClass_Instance_method_call
SubClass1.SubClass2.m22();//InnerClass_Static_method_call
}
}
Ve
o/p:
****OuterClass m1()****
PAGE:224
****InnerClass Instance m2()****
---------------------------------------------------------
ii
ClassFiles:
ath
SubClass1.class
DemoInnerClass1.class(MainClass)
ip
SubClass1$SubClass2.class
Ma
sh
ate
nk
Ve
===========================================================
PAGE:225
two types:
ii
outside the methods of OuterClass are known as Instance Member
ath
InnerClasses or Object Member InnerClasses
ip
Coding Rules:
Ma
(i)Instance Member InnerClasses can be declared with both
OuterClass_name.InnerClass_name obj =
OuterClass_Obj_name.new InnerClass_name();
Ex:
SubClass1.java
PAGE:226
package test;
public class SubClass1 {
public int a=10;
public static int b=20;
public void m1() {
System.out.println("****OuterClass m1()****");
System.out.println("The value a:"+a);
System.out.println("The value b:"+b);
}//OuterClass method
public class SubClass2{
public void m2() {
ii
System.out.println("****InnerClass Instance
m2()****");
ath
System.out.println("The value a:"+a);
System.out.println("The value b:"+b);
}
public static void m22() {
System.out.println("****InnerClass static
ip
mm22()****");
//System.out.println("The value a:"+a);
Ma
System.out.println("The value b:"+b);
}
}//Instance Member InnerClass
}//OuterClass
sh
DemoInnerClass2.java(MainClass)
package maccess;
ate
import test.*;
public class DemoInnerClass2 {
public static void main(String[] args) {
SubClass1 ob1 = new SubClass1();//OuterClass object
nk
ob1.m1();//OuterClass method_call
SubClass1.SubClass2 ob2 = ob1.new SubClass2();
//Instance member InnerClass object
ob2.m2();//InnerClass Instance method_call
Ve
o/p:
****OuterClass m1()****
PAGE:227
The value b:20
ii
-------------------------------------------------------
ath
ip
Ma
sh
ate
nk
Ve
PAGE:228
Dt : 29/7/2022
ClassFiles:
SubClass1.class
DemoInnerClass2.class(MainClass)
SubClass1$SubClass2.class
ii
ip ath
Ma
sh
ate
=========================================================
nk
Summary:
======================================================
*imp
PAGE:229
(ii)Local Member InnerClasses:
ii
Coding Rules:
ath
(i)The Local InnerClass which is declared in Instance method
ip
'Instance member InnerClass'
Ma
(ii)The Local InnerClass which is declared in Static method
Ex:
SubClass1.java
nk
package test;
public class SubClass1 {
public int a=10;
Ve
PAGE:230
//System.out.println("a:"+a);
System.out.println("b:"+b);
}
}//Local member InnerClass
SubClass2 ob2 = new SubClass2();
//Local member InnerClass object
ob2.m2();
SubClass2.m22();
}//end of m1()
public static void m2() {
//behaviour_like_Static_member_InnerClass
ii
class SubClass22{
public void m3() {
ath
System.out.println("***Instance m3()****");
//System.out.println("a:"+a);
System.out.println("b:"+b);
}
public static void m33() {
ip
System.out.println("***static m33()****");
//System.out.println("a:"+a);
Ma
System.out.println("b:"+b);
}
}//Local member InnerClass
SubClass22 ob22 = new SubClass22();
ob22.m3();
SubClass22.m33();
sh
}//end of m2()
}//OuterClass
ate
DemoInnerClass3.java(MainClass)
package maccess;
nk
import test.*;
public class DemoInnerClass3 {
public static void main(String[] args) {
SubClass1 ob1 = new SubClass1();//OuterClass object
Ve
ob1.m1();//OuterClass_Instance_method
SubClass1.m2();//OuterClass_Static_method
}
}
o/p:
****Instance m2()*****
PAGE:231
a:10
b:20
****Static m22()****
b:20
***Instance m3()****
b:20
ii
***static m33()****
ath
b:20
----------------------------------------------------
ip
ClassFiles:
SubClass1.class
DemoInnerClass3.class(MainClass)
Ma
SubClass1$1SubClass2.class
sh
SubClass1&1SubClass22.class
============================================================
ate
Ex:
nk
ITest.java
package test;
Ve
Generate.java
package test;
public class Generate {
public static ITest getRef() {
class IClass implements ITest{
PAGE:232
public void m(int x) {
System.out.println("====m(x)====");
System.out.println("The value x:"+x);
}
}//Local member InnerClass
IClass ob = new IClass();
return ob;
}//OuterClass method
}//OuterClass
ii
DemoDesign1.java(MainClass)
ath
package maccess;
import test.*;
public class DemoDesign1 {
public static void main(String[] args) {
ITest ob = Generate.getRef();
ip
//Implementation class as Local InnerClass
ob.m(123); Ma
}
}
Diagram:
sh
ate
nk
Ve
============================================================
PAGE:233
Dt : 30/7/2022
*imp
2.Anonymous InnerClasses:
Anonymous InnerClasses.
ii
(a)Anonymous InnerClass as Class extention
ath
(b)Anonymous InnerClass as Implementation class
ip
Ma
sh
ate
nk
Ve
PAGE:234
(a)Anonymous InnerClass as Class extention:
syntax:
ii
class PClass
ath
{
//PClass_body
ip
}
};
ate
Ex:
PClass.java
nk
package test;
public class PClass {
public void m1(int x) {
Ve
System.out.println("====PClass m1(x)====");
System.out.println("The value x:"+x);
}
public void m2(int y) {
System.out.println("====PClass m2(y)====");
System.out.println("The value y:"+y);
}
}
DemoAnonymous1.java(MainClass)
PAGE:235
package maccess;
import test.PClass;
public class DemoAnonymous1 {
public static void main(String[] args) {
//Anonymous InnerClass as Class_extention
PClass ob = new PClass()
{
public void m1(int x)//Overriding method
{
System.out.println("====CClass m1(x)====");
System.out.println("The value x:"+x);
ii
}
public void m3(int z)//Non-Overriding method
ath
{
System.out.println("====CClacc m3(z)====");
System.out.println("The value z:"+z);
}
};
ip
ob.m1(12);
ob.m2(13); Ma
//ob.m3(14);//Compilation error
}
}
sh
o/p:
====CClass m1(x)====
ate
====PClass m2(y)====
nk
------------------------------------------------------
Ve
Note:
ClassFiles:
PAGE:236
PClass.class
DemoAnonymous1.class(MainClass)
DemoAnonymous1$1.class
=============================================================
ii
*imp
ath
(b)Anonymous InnerClass as Implementation class:
ip
is known as 'Anonymous InnerClass as Implementation class'.
syntax:
Ma
interface ITest
sh
{
//Interface_body
ate
//IClass_body
Ve
};
Ex:
ITest.java
package test;
public interface ITest {
PAGE:237
public abstract void m1(int x);
public default void m2(int y) {
System.out.println("====default m2(y)====");
System.out.println("The value y:"+y);
}
}
DemoAnonymous2.java(MainClass)
package maccess;
import test.ITest;
ii
public class DemoAnonymous2 {
ath
public static void main(String[] args) {
//Anonymous InnerClass as implementation class
ITest ob = new ITest()
{
public void m1(int x)//Implemented method
ip
{
System.out.println("====m1(x)===="); Ma
System.out.println("The value x:"+x);
}
public void m3(int z)//Non-Implemented method
{
System.out.println("====m3(z)====");
System.out.println("The value z:"+z);
sh
}
};
ob.m1(12);
ate
ob.m2(13);
//ob.m3(14);
}
}
nk
o/p:
Ve
====m1(x)====
====default m2(y)====
---------------------------------------------------------
PAGE:238
Note:
ClassFiles:
ITest.class
ii
DemoAnonymous2.class(MainClass)
ath
DemoAnonymous2$1.class
===========================================================
ip
Ex : Application_Design_2
ITest.java
package test;
Ma
public interface ITest {
public abstract void m(int x);
}
sh
Generate.java
ate
package test;
public class Generate {
public static ITest getRef() {
//Anonymous InnerClass as Implementation class
nk
System.out.println("====m(x)====");
System.out.println("The value x:"+x);
}
};
}//OuterClass method
}//OuterClass
DemoDesign2.java(MainClass)
package maccess;
PAGE:239
import test.*;
public class DemoDesign2 {
public static void main(String[] args) {
ITest ob = Generate.getRef();
//Implementation class as Local InnerClass
ob.m(123);
}
}
=========================================================
ii
implementation class.
ath
Ex:
IComparable.java
ip
package test;
public interface IComparable { Ma
public abstract int compareTo(int x,int y,int z);
}
DemoAnonymous3.java(MainClass)
sh
package maccess;
import java.util.*;
ate
import test.*;
int v1 = s.nextInt();
int v2 = s.nextInt();
PAGE:240
int v3 = s.nextInt();
System.out.println("====Choice====");
System.out.println("1.Greater\n2.Smaller");
switch(s.nextInt()) {
case 1:
ii
//Anonymous InnerClass as implementation class
ath
IComparable ob1 = new IComparable()
ip
public int compareTo(int x,int y,int z) {
Ma
if(x>y && x>z) return x;
else return z;
sh
}
};
ate
System.out.println("Greater value:"+ob1.compareTo(v1,v2,v3));
break;
nk
case 2:
PAGE:241
else return z;
};
break;
default:
ii
System.out.println("Invalid choice...");
ath
}//end of switch
s.close();
ip
}
o/p:
Ma
Enter the value1:
sh
12
13
14
====Choice====
Ve
1.Greater
2.Smaller
Greater value:14
PAGE:242
-----------------------------------------------------
ClassFiles:
IComparable.class
DemoAnonymous3.class(MainClass)
DemoAnonymous3$1.class
DemoAnonymous3$2.class
ii
============================================================
ath
Assignment-1:
ip
implementation class'.
Assignment-2:
Ma
Convert BankTransaction application into 'Anonymous InnerClass as
implementation class'
sh
===========================================================
ate
nk
Ve
PAGE:243
Dt : 1/8/2022
Assignment-1:(Solution)
implementation class'.
IArithmetic.java
ii
package test;
ath
public interface IArithmetic {
public abstract double calculate(int x,int y);
}
ip
DemoAnonymous4.java(MainClass)
package maccess;
import test.*;
Ma
import java.util.*;
sh
public class DemoAnonymous4 {
int v1 = s.nextInt();
int v2 = s.nextInt();
System.out.println("====Choice====");
System.out.println("1.add\n2.sub\n3.mul\n4.div\n5.modDiv");
switch(s.nextInt()) {
PAGE:244
case 1:
return x+y;
ii
};
ath
System.out.println
ip
break;
case 2:
return x-y;
ate
};
nk
System.out.println
("Sub:"+sb.calculate(v1, v2));
Ve
break;
case 3:
PAGE:245
return x*y;
};
System.out.println
("Mul:"+ml.calculate(v1, v2));
ii
break;
ath
case 4:
ip
{
Ma
public double calculate(int x,int y) {
return (double)x/y;
}
sh
};
System.out.println
ate
("Div:"+dv.calculate(v1, v2));
break;
nk
case 5:
return x%y;
};
PAGE:246
System.out.println
("ModDiv:"+md.calculate(v1, v2));
break;
default:
System.out.println("Invalid choice...");
}//end of switch
ii
s.close();
ath
}
ip
ClassFiles:
IArithmetic.class
DemoAnonymous4.class(MainClass)
Ma
DemoAnonymous4$1.class
sh
DemoAnonymous4$2.class
DemoAnonymous4$3.class
ate
DemoAnonymous4$4.class
DemoAnonymous4$5.class
nk
===========================================================
Assignment-2:(Solution)
Ve
implementation class'
Balance.java
package test;
public class Balance {
PAGE:247
public double bal=2000;
public void getBalance() {
System.out.println("Balance Amt:"+bal);
}
}
CheckPinNo.java
package test;
public class CheckPinNo {
public boolean verify(int pinNo) {
ii
return switch(pinNo) {
ath
case 1111 : yield true;
case 2222 : yield true;
case 3333 : yield true;
default : yield false;
};
ip
}
} Ma
Transaction.java
package test;
public interface Transaction {
sh
public static final Balance b = new Balance();
public abstract void process(int amt);
}
ate
BankMainClass.java(MainClass)
nk
package maccess;
import java.util.*;
Ve
import test.*;
int count=0;
PAGE:248
xyz:
while(true) {
if(k)
ii
{
ath
System.out.println("====Choice====");
System.out.println("1.WithDraw\n2.Deposit");
ip
System.out.println("Enter the Choice:");
switch(s.nextInt()) {
case 1:
Ma
System.out.println("Enter the amt:");
sh
int a1 = s.nextInt();
if(amt<=b.bal)
System.out.println("Amt
withDrawn:"+amt);
b.bal=b.bal-amt;
PAGE:249
b.getBalance();
System.out.println("Transaction
Completed...");
}//end of if
else
ii
System.out.println("Insufficient fund....");
ath
}
ip
};
wd.process(a1); Ma
}//end of if
else
{
sh
System.out.println("Invalid amt...");
ate
break xyz;
nk
case 2:
int a2 = s.nextInt();
PAGE:250
public void process(int amt) {
System.out.println("Amt Deposited:"+amt);
b.bal=b.bal+amt;
b.getBalance();
System.out.println("Transaction Completed...");
ii
};
ath
dp.process(a2);
}//end of if
ip
else
{
Ma
System.out.println("Invalid amt...");
}
sh
break xyz;
default:
ate
System.out.println("Invalid choice...");
break xyz;
nk
}//end of switch
}//end of if
Ve
else
System.out.println("Invalid pinNo...");
count++;
PAGE:251
if(count==3)
}//end of loop
ii
}
ath
}
ClassFiles:
ip
Balance.class
CheckPinNo.class
Transaction.class
Ma
BankMainClass.class(MainClass)
sh
BankMainClass$1.class
BankMainClass$2.class
ate
===========================================================
Note:
nk
============================================================
*imp
PAGE:252
structure of LambdaExpression:
(para_list)->
//method_body
ii
ath
Note:
ip
LambdaExpression and the LambdaExpression is executed by calling
abstarct_method_name.
Ma
syntax:
sh
Interface_name ob = (para_list)->
{
ate
//method_body
};
nk
Ve
Ex:
ITest.java
package test;
public interface ITest {
public static final int z=20;
public abstract void m(int x);
public default void dis(int k) {
System.out.println("====default dis(k)====");
PAGE:253
System.out.println("The value k:"+k);
System.out.println("The value z:"+z);
}
}
DemoLambdaExpression1.java(MainClass)
package maccess;
import test.*;
public class DemoLambdaExpression1 {
public static void main(String[] args) {
ii
// int x=20;
ath
ITest ob = (int x)->
{
System.out.println("====m(x)===");
System.out.println("The value x:"+x);
System.out.println("The value z:"+ITest.z);
ip
};
int x=20; Ma
ob.m(123);
ob.dis(124);
}
}
sh
o/P:
====m(x)===
ate
====default dis(k)====
nk
ClassFiles:
ITest.class
DemoLambdaExpression1.class(MainClass)
PAGE:254
ii
ip ath
=======================================================
Advantage of LambdaExpression:
Ma
=>when we use LambdaExpression,then separate class file is
generated.
ate
=========================================================
method.
and the variables with same names must not be declared in the
PAGE:255
same method scope.
==========================================================
faq:
(i)Normal Interface
(ii)Functional Interface
ii
ath
(i)Normal Interface:
ip
methods is known as Normal Interface.
(ii)Functional Interface:
Ma
=>The Interface which is declared with only one abstract
sh
method is known as Functional Interface or Target Interface.
=========================================================
ate
Assignment:
LambdaExpression.
===========================================================
Ve
PAGE:256
Dt : 2/8/2022
Ex:
IComparable.java
package test;
public interface IComparable {
ii
public abstract int compareTo(int x,int y,int z);
ath
}
DemoLambdaExpression2.java(MainClass)
ip
package maccess;
import java.util.*;
import test.*;
Ma
public class DemoLambdaExpression2 {
sh
public static void main(String[] args) {
int v1 = s.nextInt();
nk
int v2 = s.nextInt();
Ve
int v3 = s.nextInt();
System.out.println("====Choice====");
System.out.println("1.Greater\n2.Smaller");
PAGE:257
switch(s.nextInt()) {
case 1:
//LambdaExpression
ii
else if(y>x && y>z) return y;
ath
else return z;
};
ip
System.out.println("Greater value:"+ob1.compareTo(v1,v2,v3));
break;
case 2:
Ma
//LambdaExpression
sh
IComparable ob2 = (int x,int y,int z)->
{
ate
else return z;
};
Ve
break;
default:
System.out.println("Invalid choice...");
}//end of switch
PAGE:258
s.close();
========================================================
Ex:
ii
ath
IArithmetic.java
package test;
public interface IArithmetic {
ip
public abstract double calculate(int x,int y);
} Ma
DemoLambdaExpression3.java(MainClass)
package maccess;
sh
import test.*;
import java.util.*;
ate
int v1 = s.nextInt();
int v2 = s.nextInt();
System.out.println("====Choice====");
System.out.println("1.add\n2.sub\n3.mul\n4.div\n5.modDiv");
PAGE:259
System.out.println("Enter the Choice:");
switch(s.nextInt()) {
case 1:
System.out.println
ii
break;
ath
case 2:
ip
System.out.println
("Sub:"+sb.calculate(v1, v2));
break;
Ma
case 3:
sh
IArithmetic ml = (int x,int y)-> x*y;
System.out.println
ate
("Mul:"+ml.calculate(v1, v2));
break;
nk
case 4:
break;
System.out.println
("ModDiv:"+md.calculate(v1, v2));
PAGE:260
break;
default:
System.out.println("Invalid choice...");
}//end of switch
s.close();
ii
}
ath
===================================================
Ex:
ip
Bank Transaction Application using LambdaExpression:
Balance.java
Ma
package test;
public class Balance {
sh
public double bal=2000;
public void getBalance() {
System.out.println("Balance Amt:"+bal);
ate
}
}
nk
CheckPinNo.java
package test;
public class CheckPinNo {
Ve
PAGE:261
Transaction.java
package test;
public interface Transaction {
public static final Balance b = new Balance();
public abstract void process(int amt);
}
BankMainClass.java(MainClass)
ii
package maccess;
ath
import java.util.*;
import test.*;
ip
public static void main(String[] args) {
Ma
Scanner s = new Scanner(System.in);
int count=0;
xyz:
sh
while(true) {
ate
if(k)
Ve
System.out.println("====Choice====");
System.out.println("1.WithDraw\n2.Deposit");
switch(s.nextInt()) {
case 1:
PAGE:262
System.out.println("Enter the amt:");
int a1 = s.nextInt();
ii
if(amt<=Transaction.b.bal)
ath
{
System.out.println("Amt
ip
withDrawn:"+amt);
Ma Transaction.b.bal=Transaction.b.bal-amt;
Transaction.b.getBalance();
System.out.println("Transaction
Completed...");
sh
}//end of if
ate
else
System.out.println("Insufficient fund....");
nk
}
Ve
};
wd.process(a1);
}//end of if
else
System.out.println("Invalid amt...");
PAGE:263
}
break xyz;
case 2:
int a2 = s.nextInt();
ii
{
ath
Transaction dp = (int amt)->
ip
System.out.println("Amt Deposited:"+amt);
MaTransaction.b.bal=Transaction.b.bal+amt;
Transaction.b.getBalance();
System.out.println("Transaction Completed...");
sh
};
dp.process(a2);
ate
}//end of if
else
nk
System.out.println("Invalid amt...");
Ve
break xyz;
default:
System.out.println("Invalid choice...");
break xyz;
PAGE:264
}//end of switch
}//end of if
else
System.out.println("Invalid pinNo...");
count++;
ii
}
ath
if(count==3)
ip
System.out.println("Sorry ! Transaction blocked...");
}
break;//stop the loop
Ma
}//end of loop
sh
}
}
ate
====================================================
*imp
nk
(a)reference to Constructor
PAGE:265
(c)reference to Static method
(a)reference to Constructor:
to Constructor.
ii
ath
syntax:
ip
Ex:
syntax:
nk
Ex:
Ve
PAGE:266
is attached with the body of Static method is known as reference
to Static method.
syntax:
Ex:
ii
ath
Diagram:
ip
Ma
sh
ate
nk
Ve
Ex:
ITest.java
package test;
public interface ITest {
public abstract void dis(int k);
}
PAGE:267
Display.java
package test;
public class Display {
public Display(int x) {
System.out.println("***Constructor body***");
System.out.println("The value x:"+x);
}
public void m1(int y) {
System.out.println("***Instance method body***");
System.out.println("The value y:"+y);
}
ii
public static void m2(int z) {
ath
System.out.println("***Static method body***");
System.out.println("The value z:"+z);
}
}
ip
DemoMethodReferences.java(MainClass)
Ma
package maccess;
import test.*;
public class DemoMethodReferences {
public static void main(String[] args) {
ITest ob1 = Display :: new; //reference to Constructor
sh
ob1.dis(123);//Constructor_body_call
ob3.dis(125);
}
}
Ve
o/p:
***Constructor body***
***Constructor body***
PAGE:268
***Instance method body***
=================================================
ii
ip ath
Ma
sh
ate
nk
Ve
PAGE:269
Dt : 3/8/2022
*imp
InnerClasses in Interfaces:
ii
*imp
ath
InnerClasses in AbstractClasses:
ip
which can be Static member InnerClass or NonStatic member
InnerClass.
Ma
Ex:
sh
ITest.java
package test;
ate
}
public static void m22(int y) {
System.out.println("****m22(y)****");
Ve
AClass.java
package test;
public abstract class AClass {
public class SubClass22{
PAGE:270
public void m22(int p) {
System.out.println("****m22(p)****");
System.out.println("The value p:"+p);
}
}//Instance member InnerClass
public static class SubClass222{
public void m222(int q) {
System.out.println("****m222(q)****");
System.out.println("The value q:"+q);
}
}//Static member InnerClass
ii
}//OuterClass
ath
DemoInnerClass4.java(MainClass)
package maccess;
import test.*;
ip
public class DemoInnerClass4 {
public static void main(String[] args) {
Ma
System.out.println("-----InnerClass in Interface-----");
ITest.SubClass2 ob1 = new ITest.SubClass2();
ob1.m2(12);
ITest.SubClass2.m22(23);
System.out.println("----Instance Class in AbstractClass-
---");
sh
AClass ob = new AClass() {};
//Object for anonymous extended class
AClass.SubClass22 ob2 = ob.new SubClass22();
ate
ob2.m22(123);
System.out.println("----Static class in AbstractClass---
-");
AClass.SubClass222 ob3 = new AClass.SubClass222();
nk
ob3.m222(234);
}
}
Ve
o/p:
-----InnerClass in Interface-----
****m2(x)****
PAGE:271
****m22(y)****
****m22(p)****
ii
****m222(q)****
ath
The value q:234
====================================================
ip
*imp
InnerInterfaces in Java:
Ma
(i)Interfaces in Classes:
sh
=>We can also declare InnerInterfaces in Class and which can
InnerInterfaces'.
nk
(iii)Interfaces in AbstractClasses:
PAGE:272
InnerInterface'.
Ex:
SubClass.java
package test;
public class SubClass {
public interface ITest2{
public abstract void m2(int x);
ii
}//Instance member InnerInterface
ath
public static interface ITest22{
public abstract void m22(int y);
}//Static member InnerInterface
}//OuterClass
ip
ITest.java Ma
package test;
public interface ITest {
public static interface ITest222{
public void m222(int p);
}//Static member InnerInterface
sh
}//OuterInterface
ate
AClass.java
package test;
public abstract class AClass {
public interface ITest3{
nk
DemoInnerInterface1.java(MainClass)
package maccess;
import test.*;
public class DemoInnerInterface1 {
PAGE:273
public static void main(String[] args) {
System.out.println("----Instance Interface in Class---
");
SubClass.ITest2 ob1 = (int x)->
{
System.out.println("****m1(x)****");
System.out.println("The value x:"+x);
};
ob1.m2(12);
System.out.println("---Static Interface in class----");
SubClass.ITest22 ob2 = (int y)->
ii
{
System.out.println("****m2(y)****");
ath
System.out.println("The value y:"+y);
};
ob2.m22(13);
System.out.println("----Static Interface in Interface---
-");
ip
ITest.ITest222 ob3 = (int p)->
{ Ma
System.out.println("****m222(p)****");
System.out.println("The value p:"+p);
};
ob3.m222(234);
System.out.println("----Instance Interface in AClass----
");
sh
AClass.ITest3 ob4 = (int a)->
{
System.out.println("****m3(a)****");
ate
");
AClass.ITest33 ob5 = (int b)->
{
System.out.println("****m33(b)****");
Ve
o/p:
PAGE:274
****m1(x)****
****m2(y)****
ii
****m222(p)****
ath
The value p:234
ip
****m3(a)****
================================================
ate
*imp
InnerAbstractClasses in Java:
nk
(i)InnerAbstractClasses in Classes:
Ve
member InnerAbstractClasses'.
(ii)InnerAbstractClasses in Interfaces:
PAGE:275
=>we can also declare InnerAbstractClasses in Interfaces and
(iii)InnerAbstractClasses in AbstractClasses:
ii
and which can be 'Static member InnerAbstractClass' or 'NonStatic
ath
member InnerAbstractClass'.
ip
Ex:(Assignment)
Ma
======================================================
Comparision Diagram:
sh
ate
nk
Ve
================================================
PAGE:276
Dt : 4/8/2022
'java.lang.Object' class:
ii
1.hashCode()
ath
2.toString()
3.clone()
ip
4.equals()
5.wait()
6.notify()
Ma
7.notifyAll()
sh
8.finalize()
9.getClass()
ate
Diagram:
nk
Ve
PAGE:277
ii
ip ath
Ma
=============================================================
*imp
sh
Arrays in Java:
(or)
2.Multi-Dimensional Arrays
=>The Arrays which are declared with one dimension are known
PAGE:278
as Single Dimensional Arrays or 1-D Arrays.
syntax:
ii
DemoArray1.java
ath
package maccess;
import java.util.*;
public class DemoArray1 {
public static void main(String[] args) {
ip
Scanner s = new Scanner(System.in);
System.out.println("Enter the size of Array:");
Ma
int n = s.nextInt();
Integer a[] = new Integer[n];//Integer Array of Size-n
System.out.println("Enter "+n+" Integer Elements:");
for(int i=0;i<a.length;i++)
{
a[i] = new Integer(s.nextInt());
sh
}//end of loop
System.out.println("===Display Using Old loop====");
for(int i=0;i<a.length;i++)
ate
{
System.out.print(a[i].toString()+" ");
}//end of loop
System.out.println("\n====Using Extended
for(Java5)====");
nk
for(Integer k : a)
{
System.out.print(k.toString()+" ");
Ve
}//end of loop
System.out.println("\n===Using
Spliterator<T>(Java8)====");
Spliterator<Integer> sp = Arrays.spliterator(a);
sp.forEachRemaining((k)->
{
System.out.print(k.toString()+" ");
});
s.close();
}
PAGE:279
}
o/p:
ii
12
ath
23
11
ip
2
12 23 11 2 5
ate
===Using Spliterator<T>(Java8)====
12 23 11 2 5
nk
Ve
PAGE:280
ii
ip ath
Ma
======================================================
sh
ate
nk
Ve
PAGE:281
Dt : 5/8/2022
faq:
syntax:
ii
for(Class_name var : Container_name)
ath
{
//loop_body
ip
}
Advantage:
Ma
=>In 'Extented for' there is no specification of initialization,
sh
Condition and Incre/Decre.
Container_name or Array_name.
==========================================================
nk
faq:
define Spliterator<T>?
Ve
Collection objects.
PAGE:282
(java.util.function.Consumer<? super T>);
Method Signature:
syntax:
ii
Spliterator<T> sp = Arrays.spliterator(a);
ath
Ex:
ip
Spliterator<Integer> sp = Arrays.spliterator(a);
faq:
define Consumer<T>?
PAGE:283
to forEachRemaining() method.
structure of Consumer<T>:
ii
}
ip ath
Ma
sh
ate
nk
Ve
PAGE:284
ii
ip ath
Ma
sh
ate
nk
=======================================================
Ve
faq:
PAGE:285
(a)Generic Types
(b)Generic Methods
(c)Generic Classes
(d)Generic Interfaces
(a)Generic Types:
ii
=>The types which are ready to accept any type of data value
ath
are known as Generic Types.
T - Type
ip
E - Element
K - Key
V - Value
Ma
sh
(b)Generic Methods:
Structure:
nk
{
Ve
//method_body
(c)Generic Classes:
PAGE:286
of object reference is known as generic Class.
Structure:
class Class_name<T>
//class_body
ii
ath
(d)Generic Interfaces:
ip
are knoen as Generic Interfaces.
Structure:
interface Interface_name<T>
Ma
{
sh
//Interface_body
}
ate
============================================================
Assignment:
nk
=============================================================
PAGE:287
Dt : 6/8/2022
Assignment:(Solution)
ProductDetails.java
ii
package test;
ath
public class ProductDetails extends Object
{
public String code,name;
public float price;
public int qty;
ip
public ProductDetails(String code,String name,float price,int
qty) { Ma
this.code=code;
this.name=name;
this.price=price;
this.qty=qty;
}
public String toString() {
sh
return code+"\t"+name+"\t"+price+"\t"+qty;
}
}
ate
DemoArray2.java(MainClass)
nk
package maccess;
import java.util.*;
Ve
import test.ProductDetails;
PAGE:288
int n = Integer.parseInt(s.nextLine());
for(int i=0;i<pd.length;i++)
ii
String code = s.nextLine();
ath
System.out.println("Enter the name-"+(i+1));
ip
System.out.println("Enter the price-"+(i+1));
Ma
float price = Float.parseFloat(s.nextLine());
}//end of loop
ate
System.out.println("====Display ProductDetails=====");
Spliterator<ProductDetails> sp=Arrays.spliterator(pd);
nk
sp.forEachRemaining((k)->
{
Ve
System.out.println(k.toString());
});
s.close();
PAGE:289
o/p:
Enter 3 ProductDetails:
A121
ii
Enter the name-1
ath
Mouse
ip
123.45
12
Ma
Enter the code-2
sh
A111
KBBB
234.56
12
A131
CDRRR
PAGE:290
Enter the price-3
456.78
13
====Display ProductDetails=====
ii
A111 KBBB 234.56 12
ath
A131 CDRRR 456.78 13
====================================================
ip
Diagram:
Ma
sh
ate
nk
Ve
======================================================
Assignment:
o/P:
PAGE:291
rollNo name branch hNO sName city pinCode maildId phno
===========================================================
faq:
ii
known as 'Object' Array.
ath
syntax:
ip
Note:
Ma
=>Object Array can hold Dis-Similer objects,which means objects
of different classes.
sh
Ex:
ate
DemoArray3.java
package maccess;
nk
import java.util.*;
import test.ProductDetails;
Ve
PAGE:292
o[2] = new ProductDetails("A202","CDR",12.34F,12);
Spliterator<Object> sp = Arrays.spliterator(o);
sp.forEachRemaining((k)->
ii
System.out.println(k.toString());
ath
});
ip
}
o/p:
=====================================================
2.Multi-Dimensional Arrays:
nk
Ex:
2-D Arrays
3-D Arrays
4-D Arrays
...
PAGE:293
Note:
ii
Class_name arr_var[][] = new Class_name[size][size];
ath
faq:
ip
define Jagged Array?
Ma
=>The Array which can hold Array objects is known as Jagged
DemoArray4.java
package maccess;
import java.util.*;
nk
PAGE:294
sp2.forEachRemaining((z)->
{
System.out.print(z.toString()+" ");
});
System.out.println();
});
}
}
o/p:
ii
====Display JaggedARRAY====
ath
Array : 11 12 13
Array : 21 22 23 24
ip
Array : 11 12 13 14 15
Array : 21 22 23 24 25 26
Ma
======================================================
sh
ate
nk
Ve
PAGE:295
Dt : 8/8/2022
ii
ip ath
Ma
sh
ate
==================================================
nk
(iv)Object Array
=========================================================
PAGE:296
Dis-Advantage of Arrays:
Note:
ii
=>In realtime Arrays are replaced by Collection<E>
ath
===========================================================
*imp
ip
Java Collection<E> Framework(JCF):
defien Collection<E>?
Ma
=>Collection<E> is an interface from java.util package and
sh
which is root of Java Collection Framework.
Sub-Interfaces:
1.Set<E>
nk
2.List<E>
3.Queue<E>
Ve
Hierarchy of Collection<E>:
PAGE:297
ii
ath
==================================================
faq:
ip
define Framework? Ma
=>The structure which is ready constructed and available for
Diagram:
sh
ate
nk
Ve
===================================================
PAGE:298
Dt : 9/8/2022
*imp
ii
ip ath
Ma
==================================================
sh
1.Set<E>:
ate
(a)HashSet<E>
Ve
(b)LinkedHashSet<E>
(c)TreeSet<E>
(a)HashSet<E>:
PAGE:299
(b)LinkedHashSet<E>:
(c)TreeSet<E>:
order.
ii
ath
Ex_Program : DemoSet1.java
package test;
import java.util.*;
ip
public class DemoSet1 {
public static void main(String[] args) {
Ma
Scanner s = new Scanner(System.in);
Set<Integer> ob = null;
System.out.println("====Choice====");
System.out.println("1.HashSet\n2.LinkedHashSet\n3.TreeSet");
System.out.println("Enter the choice:");
switch(s.nextInt()) {
sh
case 1:
ob = new HashSet<Integer>();
break;
ate
case 2:
ob = new LinkedHashSet<Integer>();
break;
case 3:
ob = new TreeSet<Integer>();
nk
break;
default:
System.out.println("Invalid Choice");
Ve
PAGE:300
System.out.println("====toString()====");
System.out.println(ob.toString());
s.close();
}
}
o/p:
====Choice====
ii
1.HashSet
ath
2.LinkedHashSet
3.TreeSet
ip
3 Ma
Enter number of Integer elements:
10
9
nk
8
Ve
====toString()====
============================================================
2.List<E>:
PAGE:301
=>The following are the implementation classes of List<E>:
(a)ArrayList<E>
(b)LinkedList<E>
(c)Vector<E>
(a)ArrayList<E>:
ii
=>ArrayList<E> organizes elements in Sequence and which is
ath
NonSynchronized class.
ip
(b)LinkedList<E>:
Ma
=>LinkedList<E> organizes elements in NonSequence and which
(c)Vector<E>:
ate
Synchronized class.
nk
Ve
PAGE:302
Dt :10/8/2022
(a)ArrayList<E>:
syntax:
ii
ath
Ex : DemoList1.java
package test;
import java.util.*;
ip
public class DemoList1 {
public static void main(String[] args) {
Ma
Scanner s = new Scanner(System.in);
ArrayList<Integer> al = new ArrayList<Integer>();
System.out.println("Enter the number of elements to be
added:");
int n = s.nextInt();
System.out.println("Enter "+n+" Integer elements:");
sh
for(int i=1;i<=n;i++)
{
al.add(new Integer(s.nextInt()));//Adding to ArrayList
ate
}//end of loop
System.out.println("====Display ArrayList=====");
System.out.println(al.toString());
System.out.println("====After Sorting====");
Collections.sort(al);//Sorting process
nk
System.out.println(al.toString());
System.out.println("=====Some methods()=====");
System.out.println("size:"+al.size());
Ve
PAGE:303
System.out.println("last index value of ele 12 is :
"+z);
System.out.println("===List<E> into Array====");
Object o[] = al.toArray();//Object Array
for(Object p : o)
{
System.out.print(p.toString()+" ");
}//end of loop
System.out.println("\n=====Sorted Array====");
Arrays.sort(o);//Sorting process
for(Object p : o)
ii
{
System.out.print(p.toString()+" ");
ath
}//end of loop
}
}
ip
o/p: Ma
Enter the number of elements to be added:
10
8
nk
5
Ve
19
====Display ArrayList=====
====After Sorting====
PAGE:304
=====Some methods()=====
size:6
ii
index value of ele 12 is : -1
ath
last index value of ele 12 is : -1
ip
4 5 500 10 11 19
=====Sorted Array====
4 5 10 11 19 500
Ma
sh
ate
nk
Ve
=====================================================
faq:
DisAdvantage of ArrayList<E>:
PAGE:305
=>In ArrayList<E>,when the element is inserted the existing
Note:
ii
=>In realtime ArrayList<E> is not preferable in applications
ath
having more number of add and remove operations.
ip
LinkedList<E>.
Ma
==========================================================
(b)LinkedList<E>:
syntax:
ate
'nodes'.
partitions:
(ii)data
Diagram:
PAGE:306
ii
ip ath
Ex : DemoList2.java
Ma
package test;
import java.util.*;
sh
public class DemoList2 {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
ate
//Non-Prime numbers
System.out.println("Enter the number of elements to be
added:");
Ve
int n = s.nextInt();
//adding 1 to n numbers
for(int i=1;i<=n;i++)
{
ob1.add(new Integer(i));
}//end of loop
System.out.println("====List<E>===");
System.out.println(ob1.toString());
s.close();
}
PAGE:307
}
o/p:
10
====List<E>===
ii
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
ath
==============================================================
Dt : 11/8/2022
*imp
ip
(c)Vector<E>: Ma
=>Vector<E> organizes elements in sequence and which is
PAGE:308
public synchronized void addElement(E);
ii
ip ath
Ma
sh
ate
nk
Ex : DemoList3.java
Ve
package test;
import java.util.*;
public class DemoList3 {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
Vector<Integer> v = new Vector<Integer>();
System.out.println("default capacity:"+v.capacity());
System.out.println("Size:"+v.size());
//Adding elements to Vector Object
for(int i=1;i<=10;i++) {
v.addElement(new Integer(i));
PAGE:309
}//end of loop
System.out.println(v.toString());
System.out.println("capacity:"+v.capacity());
System.out.println("Size:"+v.size());
v.addElement(new Integer(200));
System.out.println(v.toString());
System.out.println("capacity:"+v.capacity());
System.out.println("Size:"+v.size());
for(int i=11;i<=19;i++) {
v.addElement(new Integer(i));
}//end of loop
ii
System.out.println(v.toString());
System.out.println("capacity:"+v.capacity());
ath
System.out.println("Size:"+v.size());
v.addElement(new Integer(700));
System.out.println(v.toString());
System.out.println("capacity:"+v.capacity());
System.out.println("Size:"+v.size());
ip
System.out.println("FirstElements:"+v.firstElement());
System.out.println("LastElement:"+v.lastElement());
Ma
v.setElementAt(new Integer(800),19 );
System.out.println(v.toString());
s.close();
}
}
sh
o/P:
ate
default capacity:10
Size:0
nk
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
capacity:10
Ve
Size:10
capacity:20
Size:11
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 200, 11, 12, 13, 14, 15, 16, 17, 18, 19]
PAGE:310
capacity:20
Size:20
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 200, 11, 12, 13, 14, 15, 16, 17, 18, 19, 700]
capacity:40
Size:21
FirstElements:1
ii
LastElement:700
ath
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 200, 11, 12, 13, 14, 15, 16, 17, 18, 800, 700]
=============================================================
ip
Note:
Ma
=>The default capacity of Vector<E> is 10 elements and when the
===========================================================
ate
Note:
public java.util.Vector();
public java.util.Vector(int);
Ve
public java.util.Vector(int,int);
===============================================================
Note:
PAGE:311
faq:
process.
ii
==========================================================
ath
faq:
define Stack<E>?
ip
=>Stack<E> is a ChildClass of Vector<E> and organizes elements
Ma
based on the algorithm First-in-last-out or Last-in-first-out
public E push(E);
sh
public synchronized E pop();
Ex-program : DemoStack.java
Ve
package test;
import java.util.*;
public class DemoStack {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
Stack<Integer> ob = new Stack<Integer>();
while(true) {
System.out.println("====Choice====");
System.out.println
("1.push()\n2.pop()\n3.peek()\n4.search()\n5.exit");
PAGE:312
System.out.println("Enter the choice:");
switch(s.nextInt()) {
case 1:
System.out.println("Enter the element:");
ob.push(new Integer(s.nextInt()));
System.out.println(ob.toString());
break;
case 2:
if(ob.empty()) {
System.out.println("Stack is empty....");
}else {
ii
ob.pop();
System.out.println(ob.toString());
ath
}
break;
case 3:
if(ob.empty()) {
System.out.println("Stack is empty...");
ip
}else {
System.out.println(ob.toString());
Ma
System.out.println("peek element:"+ob.peek());
}
break;
case 4:
if(ob.empty()) {
System.out.println("Stack is empty...");
sh
}else {
System.out.println("Enter the element to
Searched:");
ate
"+pos);
}else {
System.out.println("Ele not found...");
}
Ve
}
break;
case 5:
System.out.println("Stack Operation Stopped...");
System.exit(0);
default:
System.out.println("Invalid choice...");
}//end of switch
}//end of loop
}
PAGE:313
}
=====================================================
Note:
ii
=============================================================
ip ath
Ma
sh
ate
nk
Ve
PAGE:314
Dt : 12/8/2022
Note:
==========================================================
*imp
ii
3.Queue<E>:
ath
=>Queue<E> organizes elements based on the algorithm
First-in-First-Out or Last-In-Last-Out.
ip
=>The following are some important methods of Queue<E>:
priorities.
PAGE:315
ii
ip ath
Ex : DemoQueue1.java
package test; Ma
import java.util.*;
public class DemoQueue1 {
public static void main(String[] args) {
PriorityQueue<Integer> pq = new
PriorityQueue<Integer>();
sh
for(int i=11;i<=15;i++) {
pq.add(new Integer(i));
}
System.out.println("====Queue<E>====");
ate
System.out.println(pq.toString());
System.out.println("size:"+pq.size());
System.out.println("element:"+pq.element());
System.out.println("peek element:"+pq.peek());
nk
System.out.println("size:"+pq.size());
System.out.println("====before poll()====");
System.out.println(pq.toString());
Ve
System.out.println("poll element:"+pq.poll());
System.out.println("====After poll()====");
System.out.println(pq.toString());
System.out.println("size:"+pq.size());
System.out.println("====After remove()====");
pq.remove();
System.out.println(pq.toString());
System.out.println("size:"+pq.size());
}
}
PAGE:316
o/p:
====Queue<E>====
size:5
element:11
peek element:11
ii
size:5
ath
====before poll()====
ip
poll element:11
====After poll()====
size:3
==================================================
nk
Note:
====================================================
faq:
define Deque<E>?
PAGE:317
organized on both ends.
ii
ip ath
Ma
Ex : DemoQueue2.java
sh
package test;
import java.util.*;
ate
}
System.out.println(ad.toString());
ad.addFirst(new Integer(500));
Ve
ad.addLast(new Integer(700));
System.out.println(ad.toString());
ad.removeFirst();
ad.removeLast();
System.out.println(ad.toString());
}
}
PAGE:318
o/p:
==================================================
ii
ip ath
Ma
sh
ate
nk
Ve
PAGE:319
Dt : 18/8/2022
Limitation of Collection<E>:
Map<K,V>.
ii
================================================
ath
*imp
Map<K,V> in Java:
ip
=>Map<K,V> is an interface from java.util package and which
Ma
organizes elements in the form of Key-Value pairs
K - Key(Primary Key)
PAGE:320
public default void forEach
(a)HashMap<K,V>
(b)LinkedHashMap<K,V>
ii
(c)TreeMap<K,V>
ath
(d)Hashtable<K,V>
Note:
ip
(i)Hashtable<K,V> is synchronized class and remaining classes
any order.
sh
(iii)LinkedHashMap<K,V> organizes elements in insertion order.
Hierarchy of Map<K,V>:
nk
Ve
PAGE:321
ii
ip ath
===========================================================
Ma
Ex-Program : Demonstrating Map<K,V> organizing Product Objects
syntax:
Map<String,ProductValues>
nk
ProductValues.java
Ve
package test;
public class ProductValues {
public String name;
public float price;
public int qty;
public ProductValues(String name,float price,int qty)
{
this.name=name;
this.price=price;
this.qty=qty;
PAGE:322
}
public String toString() {
return name+"\t"+price+"\t"+qty;
}
}
DemoMap1.java(MainClass)
package test;
import java.util.*;
public class DemoMap1 {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
ii
Map<String,ProductValues> m=null;
ath
System.out.println("====Choice=====");
System.out.println
("1.HashMap\n2.LinkedHashMap\n3.Hashtable\n4.TreeMap");
System.out.println("Enter the Choice:");
switch(Integer.parseInt(s.nextLine())) {
ip
case 1:
m = new HashMap<String,ProductValues>();
Ma
break;
case 2:
m = new LinkedHashMap<String,ProductValues>();
break;
case 3:
m = new Hashtable<String,ProductValues>();
sh
break;
case 4:
m = new TreeMap<String,ProductValues>();
ate
break;
default:
System.out.println("Invalid Choice...");
System.exit(0);
nk
}//end of switch
System.out.println("Enter the number of Products:");
int n = Integer.parseInt(s.nextLine());
System.out.println("Enter "+n+" Product details:");
Ve
for(int i=1;i<=n;i++) {
System.out.println("Enter the ProductCode"+i);
String code = s.nextLine();
System.out.println("Enter the ProductName"+i);
String name = s.nextLine();
System.out.println("Enter the ProductPrice"+i);
float price = Float.parseFloat(s.nextLine());
System.out.println("Enter the ProductQty"+i);
int qty = Integer.parseInt(s.nextLine());
PAGE:323
m.put(new String(code),new
ProductValues(name,price,qty));
}//end of loop
System.out.println("===Product Details====");
m.forEach((p,q)->
{
System.out.println(p+"\t"+q);
});
System.out.println("====Product Keys====");
Set<String> st = m.keySet();
st.forEach((k)->
ii
{
System.out.println(k);
ath
});
System.out.println("====Product Values====");
Collection<ProductValues> c = m.values();
c.forEach((z)->
{
ip
System.out.println(z);
}); Ma
s.close();
}
}
sh
o/p:
ate
====Choice=====
1.HashMap
nk
2.LinkedHashMap
3.Hashtable
Ve
4.TreeMap
PAGE:324
Enter 3 Product details:
A121
Mouse
ii
1200
ath
Enter the ProductQty1
12
ip
Enter the ProductCode2
A111
1300
ate
13
nk
A101
Ve
CDRRR
1400
PAGE:325
14
===Product Details====
====Product Keys====
ii
A121
ath
A111
A101
ip
====Product Values====
Mouse 1200.0 12
KBBB 1300.0 13
Ma
CDRRR 1400.0 14
sh
=============================================================
ate
nk
Ve
PAGE:326
Dt : 19/8/2022
Diagram:
ii
ip ath
Ma
sh
ate
nk
Ve
===========================================================
faq:
PAGE:327
used to retrieve elements from Collection<E> objects and Map<K,V>
objects.
ii
ath
Method Signature of forEach() on Map<K,V>:
ip
(java.util.function.BiConsumer<? super K, ? super V>);
faq:
Ma
define Consumer<T>?
sh
=>Consumer<E> is a functional interface from java.util.function
structure of Consumer<T>:
Ve
PAGE:328
faq:
define BiConsumer<T,U>?
ii
ath
structure of BiConsumer<T,U>:
ip
{
}
public abstract void accept(T, U);
Ma
sh
=======================================================
faq:
ate
object.
Ve
syntax:
Set<String> st = m.keySet();
faq:
PAGE:329
=>values() method is used to retrieve all Non-Primary key values
syntax:
Collection<ProductValues> c = m.values();
===========================================================
ii
Assignment:
ath
Construct Application to read and display Complete Student
ip
========================================================
*imp
Ma
Cursor Statements in Java Collection Framework(JCF):
2.ListIterator<E>
ate
3.Enumeration<E>
4.Spliterator<T>
nk
Ex : CursorStatements.java
Ve
package test;
import java.util.*;
public class CursorStatements {
public static void main(String[] args) {
Vector<Integer> v = new Vector<Integer>();
for(int i=1;i<=10;i++)
{
v.add(new Integer(i));
}//end of loop
System.out.println("====Iterator<E>====");
PAGE:330
Iterator<Integer> it1 = v.iterator();
while(it1.hasNext()) {
System.out.print(it1.next()+" ");
}//end of loop
System.out.println("\n====Iterator<E> Java8====");
Iterator<Integer> it2 = v.iterator();
it2.forEachRemaining((k)->
{
System.out.print(k+" ");
});
System.out.println("\n====ListIterator<E>====");
ii
ListIterator<Integer> li = v.listIterator();
System.out.print("Forward : ");
ath
while(li.hasNext()) {
System.out.print(li.next()+" ");
}//end of loop
System.out.print("\nBackward : ");
while(li.hasPrevious()) {
ip
System.out.print(li.previous()+" ");
}//end of loop Ma
System.out.println("\n====Enumeration<E>====");
Enumeration<Integer> e = v.elements();
while(e.hasMoreElements()) {
System.out.print(e.nextElement()+" ");
}//end of loop
System.out.println("\n====Spliterator<T>=====");
sh
Spliterator<Integer> sp = v.spliterator();
sp.forEachRemaining((z)->
{
ate
System.out.print(z+" ");
});
}
}
nk
o/p:
Ve
====Iterator<E>====
1 2 3 4 5 6 7 8 9 10
====Iterator<E> Java8====
1 2 3 4 5 6 7 8 9 10
====ListIterator<E>====
PAGE:331
Forward : 1 2 3 4 5 6 7 8 9 10
Backward : 10 9 8 7 6 5 4 3 2 1
====Enumeration<E>====
1 2 3 4 5 6 7 8 9 10
====Spliterator<T>=====
1 2 3 4 5 6 7 8 9 10
ii
===========================================================
ip ath
Ma
sh
ate
nk
Ve
PAGE:332
Dt : 20/8/2022
1.Iterator<E>:
in forward direction.
ii
ath
public abstract boolean hasNext();
ip
public default void remove();
object for Iterator<E> interface and the object will hold the
ate
objects.
Ve
===================================================
Note:
forEachRemaining() methods.
PAGE:333
=====================================================
2.ListIterator<E>:
ii
=>The following are some important methods of ListIterator<E>:
ath
public abstract boolean hasNext();
ip
public abstract boolean hasPrevious();
syntax:
ListIterator<Integer> li = v.listIterator();
===========================================================
PAGE:334
faq:
(i)Iterator<E>
(ii)ListIterator<E>
ii
objects in forward dirtection,but ListIterator<E> is used to
ath
retrieve elements only from List<E> objects in two directions.
ip
=========================================================
*imp
3.Enumeration<E>:
Ma
=>Enumeration<E> is an interface from java.util package and
sh
which is used to retrieve elements from Vector<E> objects in
forward direction.
ate
PAGE:335
syntax
Enumeration<Integer> e = v.elements();
4.Spliterator<T>:(Java8)
ii
objects and Array Objects.
ath
syntax:
ip
Spliterator<Integer> sp = v.spliterator();
Ma
=========================================================
sh
ate
nk
Ve
PAGE:336
Dt : 22/8/2022
*imp
define Enum<E>?
ii
we use 'enum' keyword as follows:
ath
enum Enum_name
ip
{
//elements
//variables
Ma
//methods
sh
}
ate
private constructors.
Diagram:
PAGE:337
ii
ath
Ex:
ip
Cars.java
package test;
public enum Cars {
Ma
figo(900),alto(500),dezire(700);
public int price;
private Cars(int price) {
sh
this.price=price;
}
public int getPrice() {
return price;
ate
}
}
nk
DemoMailClass.java(MainClass)
package test;
Ve
import java.util.*;
public class DemoMainClass {
public static void main(String[] args) {
Cars c[] = Cars.values();
System.out.println("====Display Enum<E> elements=====");
Spliterator<Cars> sp = Arrays.spliterator(c);
sp.forEachRemaining((k)->
{
System.out.println(k.toString()+" Costs
"+k.getPrice()+
" thousand Dollars");
PAGE:338
});
}
}
o/p:
ii
alto Costs 500 thousand Dollars
ath
dezire Costs 700 thousand Dollars
=========================================================
Note:
ip
=>In realtime,Enum<E> is less used when compared to Classes
Ma
and Interfaces.
=========================================================
*imp
sh
Summary of Objects created from CoreJava:
ate
2.String Objects
3.WrapperClass Objects
nk
4.Array Objects
Ve
5.Collection<E> Objects
6.Map<K,V> Objects
7.Enum<E> Objects
PAGE:339
2.String Objects
(a)String objects
(b)StringBuffer Objects
(c)StringBuilder Objects
3.WrapperClass Objects
(a)Byte Objects
ii
(b)Short Objects
ath
(c)Integer Objects
(d)Long Objects
ip
(e)Float Objects
(f)Double Objects
(g)Character Objects
Ma
(h)Boolean Objects
sh
4.Array Objects
5.Collection<E> Objects
(a)Set<E> Objects
(i)HashSet<E> objects
(ii)LinkedHashSet<E> objects
(iii)TreeSet<E> Objects
PAGE:340
(b)List<E> Objects
(i)ArrayList<E> Objects
(ii)LinkedList<E> Objects
(iii)Vector<E> Objects
=>Stack<E> Objects
(c)Queue<E> Objects
ii
(i)PriorityQueue<E> Objects
ath
=>Deque<E> Objects
(ii)ArrayDeque<E> Objects
ip
(iii)LinkedList<E> Objects
6.Map<K,V> Objects
(a)HashMap<K,V> Objects
Ma
(b)LinkedHashMap<K,V> Objects
sh
(c)TreeMap<K,V> Objects
(d)Hashtable<K,V> Objects
ate
7.Enum<E> Objects
=======================================================
nk
faq:
(i)Container Objects
(ii)Utility Objects
(iii)Cursor Objects
(i)Container Objects:
PAGE:341
=>The objects which hold data elements are known as Container
Objects.
(ii)Utility Objects:
ii
Ex:
ath
Scanner
StringTokenizer
ip
StringJoiner
Collections
Arrays
Ma
sh
(iii)Cursor Objects:
Ex:
nk
Iterator
ListIterator
Ve
Enumeration
Spliterator
==========================================================
PAGE:342
Dt : 23/8/2022
*imp
define Exception?
known as Exception.
ii
ath
define Exception Handling Process?
ip
as Exception handling process.
Ma
=>we use the following blocks in Exception handling process:
1.try block
2.catch block
sh
3.finally block
raised.
nk
1.try block:
=>try block will hold the statements which are going to raise
Ve
the exception.
syntax:
try
//statements;
PAGE:343
}
Execution behaviour:
ii
ath
2.catch block:
=>catch block will hold the object reference thrown from the
ip
try block and the required message is generated from catch block
syntax:
Ma
catch(Exception_Type_Class ref_var)
sh
{
//msg
ate
3.finally block:
nk
syntax:
finally
PAGE:344
//set-of-statement(resource closing operations)
Diagram:
ii
ip ath
Ma
sh
Ex:
Average.java
ate
package test;
public class Average {
public float avg(int x,int y,int z) {
return (float)(x+y+z)/3;
nk
}
}
Ve
DemoException1.java
package maccess;
import test.Average;
import java.util.*;
PAGE:345
public static void main(String[] args) {
try
int v1 = s.nextInt();
ii
System.out.println("Enter the Value-2:");
ath
int v2 = s.nextInt();
ip
int v3 = s.nextInt();
Ma
float result = new Average().avg(v1, v2, v3);
System.out.println("Average:"+result);
sh
}//end of try
catch(InputMismatchException ob)
ate
finally
Ve
s.close();
PAGE:346
}
o/p:
ii
Enter the Value-3:
ath
3
Average:2.0
ip
===================================================
faq:
syntax:
ate
try(resource1;resource2;...)
{
nk
//statements
}
Ve
Ex:
//statements
PAGE:347
}
Advantage:
ii
block.
ath
Ex : DemoException2.java(MainClass)
ip
package maccess;
import test.Average;
import java.util.*;
Ma
public class DemoException2 {
sh
public static void main(String[] args) {
ate
{
nk
try
{
Ve
int v1 = s.nextInt();
int v2 = s.nextInt();
PAGE:348
int v3 = s.nextInt();
System.out.println("Average:"+result);
}//end of try
catch(InputMismatchException ob)
ii
{
ath
System.out.println("Enter Only Integer Values....");
ip
}//end of try with resource
}
}
Ma
====================================================
sh
faq:
syntax:
resource1;resource2;...
try(res1_var;res2_var;...)
//statements
PAGE:349
}
Ex:
try(s;)
ii
//statements
ath
}
ip
Ex : DemoException3.java(MainClass)
package maccess;
import test.Average;
Ma
import java.util.*;
sh
public class DemoException3 {
try(s;)//Java9
nk
try
Ve
int v1 = s.nextInt();
int v2 = s.nextInt();
PAGE:350
System.out.println("Enter the Value-3:");
int v3 = s.nextInt();
System.out.println("Average:"+result);
}//end of try
ii
catch(InputMismatchException ob)
ath
{
ip
}
}
}//end of try with resource
Ma
}
sh
========================================================
Coding Rule:
ate
=======================================================
Ve
PAGE:351
Dt : 24/8/2022
faq:
define 'Throwable'?
ii
Throwable:
ip ath
public java.lang.Throwable();
Ma
public java.lang.Throwable(java.lang.String);
public java.lang.Throwable
(java.lang.String, java.lang.Throwable);
sh
public java.lang.Throwable(java.lang.Throwable);
protected java.lang.Throwable
ate
SubClasses:
(a)Error class
PAGE:352
(b)Exception class
Hierarchy of Throwable:
ii
ip ath
===================================================
Ma
(a)Error class:
*imp
Ve
(b)Exception class:
PAGE:353
1.UnChecked Exceptions
2.Checked Exceptions
1.UnChecked Exceptions:
ii
as UnChecked Exceptions or Runtime Exceptions.
ath
2.Checked Exceptions:
ip
=>The Exceptions which are identified by the compiler and raised
Ma
at compilation stage are known as Checked Exceptions or
CompileTime Exceptions.
sh
Diagram:
ate
nk
Ve
PAGE:354
==========================================================
*imp
ii
ath
(i)Pre-defined UnChecked Exceptions:
ip
available from JavaLib are known as Pre-defined UnChecked
Ex:
Ma
java.util.InputMismatchException
sh
java.lang.NumberFormatException
...
ate
Note:
block automatically.
Ve
--------------------------------------------------------
*imp
PAGE:355
=>Use the following process to define and raise User defined
UnChecked Exceptions:
java.lang.Exception class
ii
step-2 : The user defined class must be declared with String
ath
parameterized constructor and which pass the msg to the
parent class(Exception).
ip
step-3 : use try-catch blocks
Ma
step-4 : define the condition to raise the Exception.
sh
creation
on to catch block
Ex :
PAGE:356
EmployeeSalary.java
package test;
public class EmployeeSalary {
public float calculate(int bSal) {
return bSal+(0.93F*bSal)+(0.63F*bSal);
}
}
DemoException4.java
ii
package maccess;
ath
import test.EmployeeSalary;
import java.util.*;
ip
public class DemoException4 extends Exception
}
ate
{
nk
try(s;){
Ve
try
if(bSal<12000)//Exception-Condition
PAGE:357
{
("Invalid bSal...");
ii
System.out.println("Bsal:"+bSal);
ath
System.out.println("TotSal:"+totSal);
}//end of try
ip
catch(DemoException4 ob)
{
Ma
//System.out.println(ob.getMessage());
// System.out.println(ob.toString());
sh
ob.printStackTrace();
}
ate
catch(InputMismatchException ob)
{
nk
}
Ve
}//end of try-with-resource
===========================================================
Dt : 25/8/2022
PAGE:358
Execution flow of above program:
ii
ip ath
Note:
==========================================================
ate
faq:
========================================================
*imp
(i)Pre-defined CheckedExceptions
PAGE:359
(ii)User defined CheckedExceptions
(i)Pre-defined CheckedExceptions:
CheckedExceptions.
ii
Ex:
ath
java.lang.InterruptedException
java.lang.CloneNotSupportedException
ip
java.lang.ClassNotFoundException
java.io.IOException
...
Ma
sh
define sleep() method?
Method Signature:
throws java.lang.InterruptedException;
Diagram:
PAGE:360
ii
ath
ip
syntax:
Thread.sleep(time);
-------------------------------------------------------
Ma
Note:
sh
=>'throws' keyword specify to ignore the exception in current
exception or CheckedException.
=================================================
Ve
Ex-program:
package maccess;
public class DemoException5 {
public static void main(String[] args)
{
for(int i=1;i<=10;i++)
{
System.out.println("Value : "+i);
try
PAGE:361
{
Thread.sleep(5000);
//Execution Stopped for 50000
milliSecons
}//end of try
catch(InterruptedException ie)
{
ie.printStackTrace();
}
}//end of loop
}
ii
}
ath
o/p:
Value : 1
ip
Value : 2
Value : 3
Value : 4
Ma
Value : 5
sh
Value : 6
Value : 7
ate
Value : 8
Value : 9
nk
Value : 10
====================================================
Ve
PAGE:362
Dt : 26/8/2022
*imp
=>we use the following two steps to define and raise User
ii
defined CheckedExceptions:
ath
Step-1 : Add 'throws' keyword to the method Signature and ignore
ip
the exception in Current method and raise at methodCall
Ma
Step-2 :Declare 'throw' keyword in catch block to perform
re-throwing process
sh
Ex-Program:
CheckPinNo.java
ate
package test;
@SuppressWarnings("serial")
public class CheckPinNo extends Exception
{
nk
public CheckPinNo() {}
public CheckPinNo(String msg)
{
Ve
super(msg);
}
public void verify(int pinNo)throws CheckPinNo
{
try
{
if(!(pinNo==1111 || pinNo==2222 ||
pinNo==3333))//Exception_Condition
{
CheckPinNo cpn=new CheckPinNo("Invalid PinNo");
//Con_Call
PAGE:363
throw cpn;//reference thrown to catch block
}
}//end of try
catch(CheckPinNo cpn)
{
throw cpn;//re-throwing process
}
}
}
ii
DemoException6.java(MainClass)
ath
package maccess;
import test.*;
import java.util.*;
@SuppressWarnings("serial")
ip
public class DemoException6 extends Exception
{ Ma
public DemoException6(String msg)
{
super(msg);
}
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
sh
try(s;)
{
try
ate
{
System.out.println("Enter the PinNo:");
int pinNo = s.nextInt();
CheckPinNo ob = new CheckPinNo();//Con_Call
nk
ob.verify(pinNo);//Method Call
System.out.println("Enter the amt:(withDraw)");
int amt = s.nextInt();
if(!(amt>0 && amt%100==0))//Exception-Condition
Ve
{
DemoException6 de = new DemoException6
("Invalid Amt..");
throw de;
}
if(amt>2000)//Exception-Condition
{
DemoException6 de = new DemoException6
("Insufficient Fund...");
throw de;
PAGE:364
}
System.out.println("Amt WithDrawn:"+amt);
System.out.println("Balancd Amt:"+(2000-amt));
System.out.println("Transaction Completed...");
}//end of try
catch(CheckPinNo cpn)
{
System.out.println(cpn.getMessage());
}
catch(DemoException6 de)
{
ii
System.out.println(de.getMessage());
}
ath
}//end of try with resource
}
}
ip
Dt : 29/8/2022
Diagram:
Ma
sh
ate
nk
Ve
PAGE:365
ii
ip ath
Ma
sh
ate
============================================================
faq:
nk
Note:
the catch block of try block where the method call is declared.
PAGE:366
faq:
===========================================================
ii
faq:
ath
wt is the diff b/w
(i)throw
ip
(ii)throws
(i)throw:
Ma
=>In the process of handling exception we use 'throw' keyword
sh
to move the object reference on to catch block.
ate
(ii)throws:
========================================================
*imp
PAGE:367
(b)Using Single catch block
Multiple exceptions.
ii
syntax:
ath
try
ip
//Exception1
}
//Exception2
Ma
catch(Exception1 ob1)
sh
{
//msg
ate
catch(Exception2 ob2)
nk
//msg
Ve
PAGE:368
syntax:
try
//Exception1
//Exception2
ii
}
ath
catch(Exception1 | Exception2 | ... ob)
ip
//msg
}
Ma
======================================================
faq:
sh
define 'java.lang.NullPointerException'?
=======================================================
nk
faq:
Comparision diagram:
PAGE:369
ii
ip ath
Ma
sh
==================================================
Assignment:
ate
Note:
nk
=====================================================
Ve
PAGE:370
Ve
nk
ate
sh
PAGE:371
Ma
ip ath
ii
Dt : 30/8/2022
*imp
Multi-Threading in Java:
define Program?
=>Program is a set-of-Instructions.
ii
define Application?
ath
=>Set-of-programs collected together to perform
ip
*imp
define process?
Ma
=>According to Java developer,Application under
sh
execution is a process.
ate
Ex:
https://www.irctc.co.in
nk
http://www.UserApp.com
Ve
PAGE:372
ii
ip ath
define Task? Ma
=>The part of process is known as Task
Note:
sh
=>Each program in application is a Task,which
Task.
nk
define Multi-Tasking?
as Multi-Tasking.
Note:
PAGE:373
=>Executing multiple tasks from the same
*imp
define Thread?
ii
ath
Note:
ip
backGround process - no separate identification
Ma
LightWeight process - Consume less execution
time
define Multi-Threading?
ate
known as Multi-Threading.
nk
==========================================
Ve
PAGE:374
Dt : 2/9/2022
*imp
ii
ath
structure of Runnable:
ip
{
}
public abstract void run();
Ma
sh
step-2 : The User defined implementation classes must
classes.
Ve
parameter.
PAGE:375
step-5 : Call run() method for execution using start()
method.
Ex :
Display1.java
package test;
public class Display1 implements Runnable{
ii
public void run()
ath
{
for(int i=1;i<=5;i++)
{
System.out.println("Task-1 : "+i);
try {
ip
Thread.sleep(2000);
}catch(InterruptedException ie) {}
Ma
}//end of loop
}
}
Display2.java
sh
package test;
public class Display2 implements Runnable{
ate
try {
Thread.sleep(2000);
}catch(InterruptedException ie) {}
Ve
}//end of loop
}
}
DemoThread1.java(MainClass)
package maccess;
import test.*;
public class DemoThread1 {
PAGE:376
public static void main(String[] args) {
Display1 d1 = new Display1();
Display2 d2 = new Display2();
ii
}
ath
o/p:
Task-1 : 1
ip
Task-2 : 101
Task-1 : 2
Task-2 : 102
Ma
Task-1 : 3
sh
Task-2 : 103
Task-1 : 4
ate
Task-2 : 104
Task-1 : 5
nk
Task-2 : 105
-----------------------------------------
Ve
PAGE:377
ii
ip ath
Ma
sh
ate
nk
Ve
====================================================
*imp
implementation classes'
PAGE:378
Ex:
DemoThread2.java(MainClass)
package maccess;
public class DemoThread2 {
public static void main(String[] args) {
ii
public void run()
ath
{
for(int i=1;i<=5;i++)
{
System.out.println("Task-1 : "+i);
try {
ip
Thread.sleep(2000);
}catch(InterruptedException ie) {}
Ma
}//end of loop
}
};
{
System.out.println("Task-2 : "+i);
try {
Thread.sleep(2000);
nk
}catch(InterruptedException ie) {}
}//end of loop
}
};
Ve
}
}
PAGE:379
=====================================================
*imp
ii
Ex:
ath
DemoThread3.java(MainClass)
package maccess;
public class DemoThread3 {
ip
public static void main(String[] args) {
Runnable d1 = ()->
{
Ma
for(int i=1;i<=5;i++)
{
System.out.println("Task-1 : "+i);
try {
sh
Thread.sleep(2000);
}catch(InterruptedException ie) {}
}//end of loop
ate
};
Runnable d2 = ()->
{
for(int i=101;i<=105;i++)
nk
{
System.out.println("Task-2 : "+i);
try {
Ve
Thread.sleep(2000);
}catch(InterruptedException ie) {}
}//end of loop
};
PAGE:380
}
}
===================================================
*imp
ii
=>In this model run() method is attached with the
ath
body of method from User defined class and which is
ip
Ex: Ma
Display1.java
package test;
public class Display1
{
sh
public static void dis1()
{
for(int i=1;i<=5;i++)
ate
{
System.out.println("Task-1 : "+i);
try {
Thread.sleep(2000);
}catch(InterruptedException ie) {}
nk
}//end of loop
}
}
Ve
Display2.java
package test;
public class Display2
{
public static void dis2()
{
for(int i=101;i<=105;i++)
PAGE:381
{
System.out.println("Task-2 : "+i);
try {
Thread.sleep(2000);
}catch(InterruptedException ie) {}
}//end of loop
}
}
DemoThread4.java(MainClass)
ii
package maccess;
ath
import test.*;
public class DemoThread4 {
public static void main(String[] args) {
new Thread(Display1 :: dis1).start();
new Thread(Display2 :: dis2).start();
ip
}
} Ma
===============================================
Dt : 3/9/2022
sh
faq:
Note:
PAGE:382
application.
=============================================
*imp
ii
=>Thread Synchronization process can be done in two
ath
ways:
ip
2.Thread Communication
PAGE:383
syntax:
synchronized(obj_ref_var)
//statements
ii
ath
Diagram:
ip
Ma
sh
ate
nk
Ve
Ex:
Printer.java
package test;
public class Printer {
public void print(int n,String name) {
for(int i=1;i<=n;i++) {
System.out.println(i+" print for User "+name);
try {
PAGE:384
Thread.sleep(2000);
}catch(InterruptedException ie) {}
}//end of loop
}
}
User1.java
package test;
public class User1 implements Runnable{
public Printer p;
ii
public User1(Printer p) {
ath
this.p=p;
}
public void run()
{
synchronized(p)//Locking object
ip
{
p.print(5, "Raj"); Ma
}
}
}
User2.java
sh
package test;
public class User2 implements Runnable{
ate
public Printer p;
public User2(Printer p) {
this.p=p;
}
nk
p.print(5,"Ram");
}
}
}
DemoThread5.java(MainClass)
package maccess;
import test.*;
PAGE:385
public class DemoThread5 {
public static void main(String[] args) {
Printer p = new Printer();
t1.start();
ii
t2.start();
}
ath
}
o/p:
ip
1 print for User Raj
================================================
Assignment:
=============================================
PAGE:386
Dt : 5/9/2022
method'.
ii
individual instance method and the method is available
ath
to one user at-a-time.
ip
is known as Synchronized class.
Ex:
Ma
Printer.java
sh
package test;
public class Printer {
public synchronized void print(int n,String name) {
ate
for(int i=1;i<=n;i++) {
System.out.println(i+" print for User "+name);
try {
Thread.sleep(2000);
}catch(InterruptedException ie) {}
nk
}//end of loop
}
}
Ve
User1.java
package test;
public class User1 implements Runnable{
public Printer p;
public User1(Printer p) {
this.p=p;
}
public void run()
PAGE:387
{
p.print(5, "Raj");
}
}
User2.java
package test;
public class User2 implements Runnable{
public Printer p;
public User2(Printer p) {
ii
this.p=p;
ath
}
public void run()
{
p.print(5,"Ram");
}
ip
}
DemoThread6.java(MainClass)
Ma
package maccess;
import test.*;
public class DemoThread6 {
sh
public static void main(String[] args) {
Printer p = new Printer();
ate
t1.start();
t2.start();
Ve
}
}
=================================================
PAGE:388
synchronized keyword is known as
Ex:
ii
Printer.java
ath
package test;
public class Printer {
public synchronized static void print(int n,String name) {
for(int i=1;i<=n;i++) {
ip
System.out.println(i+" print for User "+name);
try { Ma
Thread.sleep(2000);
}catch(InterruptedException ie) {}
}//end of loop
}
}
sh
User1.java
ate
package test;
public class User1 implements Runnable{
public void run()
{
Printer.print(5, "Raj");
nk
}
}
Ve
User2.java
package test;
public class User2 implements Runnable{
public void run()
{
Printer.print(5,"Ram");
}
}
PAGE:389
DemoThread6.java(MainClass)
package maccess;
import test.*;
public class DemoThread7 {
public static void main(String[] args) {
ii
Thread t1 = new Thread(ob1);
ath
Thread t2 = new Thread(ob2);
t1.start();
t2.start();
}
ip
}
Ma
================================================
*imp
2.Thread Communication:
sh
=>The process of establishing communication b/w
ate
(a)wait()
Ve
(b)notify()
(c)notifyAll()
(a)wait():
PAGE:390
receives msg in the form of notify() or notifyAll().
(b)notify():
ii
(c)notifyAll():
ath
=>notifyAll() method also release the locked resource
ip
Ex:
Producer.java
Ma
package test;
public class Producer implements Runnable{
sh
public StringBuffer sb=null;
public Producer()
{
ate
{
for(int i=1;i<=10;i++)
{
Ve
sb.append(i+":");
System.out.println("Appending
buffer.....");
Thread.sleep(2000);
}//end of loop
sb.notify();
//release the lock and send_msg_to_next_thread
}//end of lock
}catch(Exception e) {e.printStackTrace();};
}
PAGE:391
}
Consumer.java
package test;
public class Consumer implements Runnable{
public Producer prod=null;
public Consumer(Producer prod)
{
ii
this.prod=prod;
ath
}
public void run() {
try {
synchronized(prod.sb)//locking buffer
{
ip
System.out.println
("Control with Consumer...but Blocked...");
Ma
prod.sb.wait();//Consumer blocked
System.out.println("===Display using
Consumer===");
System.out.println(prod.sb.toString());
}//end of synchronized lock
}catch(Exception e) {e.printStackTrace();}
sh
}
}
ate
DemoThread8.java(MainClass)
package maccess;
nk
import test.*;
public class DemoThread8 {
public static void main(String[] args) {
Producer p = new Producer();//Con_Call
Ve
PAGE:392
o/p:
Appending buffer.....
Appending buffer.....
Appending buffer.....
Appending buffer.....
ii
Appending buffer.....
ath
Appending buffer.....
Appending buffer.....
ip
Appending buffer.....
Appending buffer.....
Appending buffer.....
Ma
===Display using Consumer===
sh
1:2:3:4:5:6:7:8:9:10:
ate
Diagram:
nk
Ve
PAGE:393
ii
ip ath
Ma
sh
ate
============================================
nk
Ve
PAGE:394
============================================
Dt : 6/9/2022
ClassFiles:
Producer.class
Consumer.class
ii
DemoThread8.class(MainClass)
ip ath
Ma
sh
ate
nk
=============================================
Note:
Ve
=================================================
faq:
PAGE:395
=>Thread-Life Cycle demonstrates diff states of
2.Ready-to-run
ii
3.Running
ath
(i)Thread Completion
ip
=>Thread DeadLock
Diagram:
Ma
sh
ate
nk
Ve
====================================================
faq:
PAGE:396
Execution process to control and manage threads.
manager.
two algorithms:
ii
(ii)Priority based Algorithm
ath
(i)Time Slicing Algorithm:
ip
=>In Time Slicing Algorithm all the multiple threads
--------------------------------------------
note:
nk
for threads.
Ve
Ex:
t1.setPriority(8);
1 - Least Priority
PAGE:397
10 - Highest Priority
ii
public static final int MIN_PRIORITY;
ath
public static final int NORM_PRIORITY;
ip
syntax:
t1.setPriority(Thread.MIN_PRIORITY + 2)
Ma
sh
=>we use getPriority() method to display the priority
of a thread.
ate
syntax:
nk
int p = t1.getPriority();
=================================================
Ve
faq:
define LiveLock?
LiveLock.
PAGE:398
faq:
define DeadLock?
DeadLock.
ii
Note:
ath
=>The raised events occurs permanently then thread
is under deadlock.
ip
================================================
Dt : 7/9/2022
faq:
Ma
How can we know the thread is under DeadLock or
sh
LiveLock?
syntax:
boolean k = t1.isAlive();
Ve
if(k)
t1.resume();
PAGE:399
else
t1.suspend();
================================================
faq:
ii
define daemon thread?
ath
=>The thread which executes contineously is known
as daemon thread.
ip
=>Server service threads are daemon threads.
Note:
Ma
=>we use setDaemon() method to make the thread as
sh
daemon thread.
syntax:
ate
t1.setDaemon(true);
syntax:
Ve
boolean z = t1.isDaemon();
==================================================
faq:
PAGE:400
running thread and start the next thread.
Ex:
t1.start();
t1.join();
t2.start();
Note:
ii
=>Complete the thread t1 and then start t2.
ath
===============================================
faq:
ip
define yield() method?
Ma
=>yield() method specify to stop the current running
t1.start();
ate
t1.yield();
t2.start();
nk
==============================================
faq:
Ve
stack.
PAGE:401
=>start() method activates Thread-Scheduler.
===============================================
faq:
define ThreadGroup?
ii
=>ThreadGroup is a class from java.lang package and
ath
which is used collect multiple threads as a group.
ip
==============================================
Application of threads:
Ma
(i)Threads are used in Gaming applications.
=============================================
ate
faq:
define Abstraction?
nk
abstraction process.
Ex:
PAGE:402
===================================================
*imp
PolyMorphism in Java:
Poly - Many
ii
Morphsim - Forms
ath
=>PolyMorphism is categorized into two types:
ip
1.Dynamic PolyMorphism
2.Static PolyMorphism
Ma
1.Dynamic PolyMorphism:
sh
=>PolyMorphism at execution stage is known as
Ex:
2.Static PolyMorphism:
Ve
Ex:
PAGE:403
void add(int,int)
void add(int,int,int)
===========================================
Note:
following keywords:
ii
1.static
ath
2.private
3.final
ip
1.static:
Ma
=>The following are the static programming
components:
sh
(a)static variables
(b)static methods
ate
(c)static blocks
(d)static classes
nk
(e)static Interfaces
(f)static AbstractClasses
Ve
2.private:
components:
PAGE:404
(a)private variables
(b)private methods
(c)private Constructors
(d)private Classes
ii
ath
(a)private variables:
ip
=>The variables which are declared with 'private'
same class.
nk
(b)private methods:
Coding Rule:
PAGE:405
same class.
Dt : 8/9/2022
*imp
(c)private Constructors:
ii
keyword are known as private Constructors.
ath
Behaviour:
ip
=>Priviate constructors will restrict the object
Note:
ate
'SingleTon Classes'.
nk
-----------------------------------------------
faq:
Ve
as SingleTon class.
faq:
PAGE:406
define SingleTon class design pattern?
ii
(a)private static reference variable
ath
(b)private constructor
(c)static method
ip
(a)private static reference variable:
Ma
=>This private static reference variable will hold
(b)private constructor:
ate
(c)static method:
Ve
============================================
PAGE:407
(i)Early Instantiation process
ii
ath
Ex:
PTest.java
ip
package p1;
public class PTest {
private PTest() {}
private static PTest ob = null;
static
Ma
{
ob = new PTest();
}
sh
public static PTest getRef()
{
return ob;
ate
}
public void access() {
System.out.println("====access()====");
}
nk
}
Ve
DemoPoly1.java(MainClass)
package p2;
import p1.PTest;
public class DemoPoly1 {
public static void main(String[] args) {
// PTest ob = new PTest();//Error
PTest ob = PTest.getRef();//Accessing_ref
ob.access();
}
PAGE:408
}
ii
Ex:
ath
PTest2.java
package p1;
public class PTest2 {
private PTest2() {}
ip
private static PTest2 ob = null;
public static PTest2 getRef() Ma
{
if(ob==null)
{
ob = new PTest2();
}
return ob;
sh
}
public void access() {
System.out.println("====access()====");
ate
}
nk
DemoPoly2.java(MainClass)
package p2;
Ve
import p1.PTest2;
public class DemoPoly2 {
public static void main(String[] args) {
// PTest ob = new PTest();//Error
PTest2 ob = PTest2.getRef();//Accessing_ref
ob.access();
}
}
PAGE:409
=======================================
(d)private Classes:
Note:
ii
which means OuterClasses cannot be declared as
ath
private.
ip
Ma
sh
ate
=============================================
nk
Assignment:
Ve
InnerClasses
===========================================
*imp
3.final:
PAGE:410
(a)final variables
(b)final methods
(c)final classes
classes
ii
ath
(a)final variables:
ip
in classes are known as final variables.
Ma
=>These final variables must be initialized with values
using Constructor.
nk
(b)final methods:
Ve
cannot be replaced.
PAGE:411
(c)final classes:
cannot be inherited.
-----------------------------------------------
ii
Note:
ath
=>we use final programming components to construct
"Immutable classes".
ip
------------------------------------------------
faq:
final variables'
methods"
Note:
PAGE:412
Objects".
faq:
(i)Setter methods
(ii)Getter methods
ii
ath
(i)Setter methods:
ip
objects.
(ii)Getter methods:
Ma
=>Getter methods are used to get the data from the
sh
objects.
ate
Coding Rule:
================================================
Ve
PAGE:413