SlideShare a Scribd company logo
1 of 25
Download to read offline
Module 04 – Object Oriented in Java
Danairat T.
Line ID: Danairat
FB: Danairat Thanabodithammachari
+668-1559-1446
Fundamental Java Programming
The Course Outline
Module 01 – Introduction to Java
Module 02 – Basic Java Programming
Module 03 – Control Flow and Exception Handling
Module 04 – Object Oriented in Java
Module 05 – Java Package and Access Control
Module 06 – Java File IO
Module 07 – Java Networking
Module 08 – Java Threading
Module 04 – Object Oriented in Java
• Java Class
• Java Object
• Java Variable
• Java Method and Constructor
• Abstraction
• Encapsulation
• Inheritance
• Polymorphism
Java Class
A class is a blueprint or prototype from which objects are
created. This section defines a class that models the state
and behavior of a real-world object. It intentionally focuses on
the basics, showing how even a simple class can cleanly
model state and behavior.
Java Object
Java Object is conceptually similar to real-world objects.
They consist of state and behavior.
An object stores its state in fields (variables) and exposes its
behavior through methods.
Methods operate on an object's internal state. Hiding internal
state is known as data encapsulation
Class
Object 1
Object 2
Blueprint
Instance
Java Class Syntax
["public"] ["abstract"|"final"]"class" Class_name
["extends" object_name] ["implements"
interface_name]
"{"
// properties declarations
// behavior declarations
"}"
Class Members
Class consists from two main members:-
• Variable
• Method
Variable
Member variables in a class—these are called fields.
- Class – static member
- Object – instance member
Variables in a method or block of code—these are called local variables.
Variables in method declarations—these are called parameters.
Method
[ "public" | "private" | "protected" ] [ "final" ]
[ "static" | "abstract" ]
return_data_type method_name "(" parameter_list ")"
"{"
// some defining actions
"}"
public static void example1() {}
public static int add2(int x) {x+=2; return x;}
public static double example3(int x, double d) {return x*d;}
public static void example4(int x, int y, boolean flag) {}
public static void example5(int arr[]) {} // note: this is object
Type of Java Method
1. Constructor methods
These allow class objects to be created with fields initialized to values
as determined by the methods' parameters. This allows objects to start
with values appropriate to use
public Box() {length=0;width=0;height=0;} // default is point public Box(int l,int w,int h) // allows
giving initial size {length=l; width=w; height=h;}
2. Accessor (or observer) methods read property (ie. field variable) values
and are conventionally named getField() or whatever the property is
called.
3. Mutator (or transformer) methods set property values and are often
named setField() etc. Mutators can be used to ensure that the
property's value is valid in both range and type.
4. Helper methods support modular of code structure in a unit of working.
Overloading Method
The Java programming language supports overloading methods,
and Java can distinguish between methods with different method
signatures (Method Name, Argument Type, Number of Argument).
public class TouchPointer {
...
public void draw(int i) {
...
}
public void draw(double f) {
...
}
public void draw(int i, int j) {
...
}
}
Constructor
When you create a new instance (a new object) of a class using the new
keyword, a constructor for that class is called. Constructors are used to
initialize the instance variables (fields) of an object. Constructors are
similar to methods, but with some important differences.
• Constructor name is class name. Eg. YourClassName() {}
• Default constructor. If you don't define a constructor for a class, a
default parameterless constructor is automatically created by the
compiler. The default constructor calls the default parent constructor
(super()) and initializes all instance variables to default value.
• Default constructor is created only if there are no constructors. If you
define any constructor for your class, no default constructor is
automatically created.
Differences between methods and
constructors
1. There is no return type given in a constructor signature
(header). The value is this object itself so there is no need
to indicate a return value.
2. There is no return statement in the body of the constructor.
3. The first line of a constructor must either be a call on
another constructor in the same class (using this), or a call
on the superclass constructor (using super). If the first line
is neither of these, the compiler automatically inserts a call
to the parameterless super class constructor.
LAB – ConstructTest1
public class ConstructTest {
int value1;
int value2;
ConstructTest() {
value1 = 10;
value2 = 20;
System.out.println("Inside Constructor");
}
public void display() {
System.out.println("Value1 === " + value1);
System.out.println("Value2 === " + value2);
}
public static void main(String[] args) {
ConstructTest c1 = new ConstructTest();
c1.display();
}
}
Inside Constructor
Value1 === 10
Value2 === 20
Creating Object HereCreating
Reference
Activating Method
LAB - Constructor Overloading
class ConstrutOverloadDemo {
int value1;
int value2;
ConstrutOverloadDemo() {
value1 = 10;
value2 = 20;
System.out.println("Inside 1st Constructor");
}
ConstrutOverloadDemo(int a) {
value1 = a;
System.out.println("Inside 2nd Constructor");
}
ConstrutOverloadDemo(int a, int b) {
value1 = a;
value2 = b;
System.out.println("Inside 3rd Constructor");
}
public void display() {
System.out.println("Value1 === " + value1);
System.out.println("Value2 === " + value2);
}
public static void main(String[] args) {
ConstrutOverloadDemo c1 = new
ConstrutOverloadDemo();
ConstrutOverloadDemo c2 = new
ConstrutOverloadDemo(30);
ConstrutOverloadDemo c3 = new
ConstrutOverloadDemo(30, 40);
c1.display();
c2.display();
c3.display();
}
}
LAB - Constructor Chain
class ConstrucChainDemo{
int value1;
int value2;
ConstrucChainDemo(){
value1 = 1;
value2 = 2;
System.out.println("Inside 1st Parent Constructor");
}
ConstrucChainDemo(int a, int b){
value1 = a;
value2 = b;
Syastem.out.println("Inside 2nd Parent Constructor");
}
}
class ConstrucChild extends ConstrucChainDemo{
int value3;
int value4;
ConstrucChild(){
super(11,22);
value3 = 3;
value4 = 4;
System.out.println("Inside the Constructor of Child");
}
public void display(){
System.out.println("Value1 === "+value1);
System.out.println("Value2 === "+value2);
System.out.println("Value3 === "+value3);
System.out.println("Value4 === "+value4);
}
}
public static void main(String args[]){
ConstrucChild c1 = new ConstrucChild();
c1.display();
}
Object Oriented History
The sense of object-oriented programming term seems to
make their first appearance at MIT in the late 1950s
Object-oriented programming is modeled on how in the
real world objects are made up of many kinds of smaller
objects.
The Smalltalk language, which was developed at Xerox
PARC (by Alan Kay and others) in the 1970s, introduced
the term object-oriented programming to represent the
pervasive use of objects and messages as the basis for
computation.
Abstraction
Abstraction(hiding implementation) focuses on the
outside view of an object.. (i.e. the interface)
Abstraction is an essential element for OO which
manages the complexity. In a sense when someone
works on a computer not necessary that he should
know the working of each and every part of the
computer.
interface Customer {
void printCustomer (int i);
}
Encapsulation
Encapsulation (hiding information) prevents clients from
seeing its inside view, where the behavior of the
abstraction is implemented
It is the mechanism that binds together state and behavior
in manipulates and keeps both safe from outside
interference and misuse.
class Customer {
private String name;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
}
Inheritance
It is the process by which one object acquires the properties
of another object. This supports the hierarchical
classification. Without the use of hierarchies each object
would need to define all its characteristics explicitly.
However by use of inheritance, an object need only define
those qualities that make it unique within its class.
Java use “extend” keyword to inherit properties and
behavior from super to its sub class.
class Customer {
String name;
public String getName() {
}
}
class MemberCustomer extends
Customer {
int collectedPoints;
}
Polymorphism
The ability of the object design to group object behavior
from different types.
So by using this, one object can be treated like another
even it came from difference hierarchy.
The programmers can focus on selected behavior by no
need to know the exact type of object in advance and this
is being implemented at runtime.
Defining the Behavior
public interface IFace_Printable {
public void printNow();
}
Defining Classes which are the same
behavior
public class CustomerInfo implements IFace_Printable{
@Override
public void printNow() {
System.out.println("Read Customer Table... CustomerInfo. Done.");
}
}
public class ProductInfo implements IFace_Printable{
@Override
public void printNow() {
System.out.println("Reading Product Table... ProductInfo. Done.");
}
}
Create Polymorphic Method
public class PrintServer {
private IFace_Printable iFacePrintable;
PrintServer(IFace_Printable iFacePrintable){
this.iFacePrintable = iFacePrintable;
}
public void printNowWraper(){
iFacePrintable.printNow();
}
}
Create Test Client for the Polymorphic Method
public class PrintClientApplication {
private static CustomerInfo customerInfo = new CustomerInfo();
private static ProductInfo productInfo = new ProductInfo();
public static void main(String [] args) {
new PrintServer(customerInfo).printNowWraper();
new PrintServer(productInfo).printNowWraper();
}
}
Danairat T.
Line ID: Danairat
FB: Danairat Thanabodithammachari
+668-1559-1446
Thank you

More Related Content

What's hot

OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...Sagar Verma
 
Core Java Programming | Data Type | operator | java Control Flow| Class 2
Core Java Programming | Data Type | operator | java Control Flow| Class 2Core Java Programming | Data Type | operator | java Control Flow| Class 2
Core Java Programming | Data Type | operator | java Control Flow| Class 2Sagar Verma
 
Core java concepts
Core java  conceptsCore java  concepts
Core java conceptsRam132
 
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B KuteChapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B KuteTushar B Kute
 
Object and Classes in Java
Object and Classes in JavaObject and Classes in Java
Object and Classes in Javabackdoor
 
Statics in java | Constructors | Exceptions in Java | String in java| class 3
Statics in java | Constructors | Exceptions in Java | String in java| class 3Statics in java | Constructors | Exceptions in Java | String in java| class 3
Statics in java | Constructors | Exceptions in Java | String in java| class 3Sagar Verma
 
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...Sagar Verma
 
Lecture - 5 Control Statement
Lecture - 5 Control StatementLecture - 5 Control Statement
Lecture - 5 Control Statementmanish kumar
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)arvind pandey
 
Chapter 4 - Defining Your Own Classes - Part I
Chapter 4 - Defining Your Own Classes - Part IChapter 4 - Defining Your Own Classes - Part I
Chapter 4 - Defining Your Own Classes - Part IEduardo Bergavera
 
Lecture - 3 Variables-data type_operators_oops concept
Lecture - 3 Variables-data type_operators_oops conceptLecture - 3 Variables-data type_operators_oops concept
Lecture - 3 Variables-data type_operators_oops conceptmanish kumar
 
Lecture - 2 Environment setup & JDK, JRE, JVM
Lecture - 2 Environment setup & JDK, JRE, JVMLecture - 2 Environment setup & JDK, JRE, JVM
Lecture - 2 Environment setup & JDK, JRE, JVMmanish kumar
 
Packages and inbuilt classes of java
Packages and inbuilt classes of javaPackages and inbuilt classes of java
Packages and inbuilt classes of javakamal kotecha
 

What's hot (20)

OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
 
Core Java Programming | Data Type | operator | java Control Flow| Class 2
Core Java Programming | Data Type | operator | java Control Flow| Class 2Core Java Programming | Data Type | operator | java Control Flow| Class 2
Core Java Programming | Data Type | operator | java Control Flow| Class 2
 
Class introduction in java
Class introduction in javaClass introduction in java
Class introduction in java
 
Core java concepts
Core java  conceptsCore java  concepts
Core java concepts
 
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B KuteChapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
 
Object and Classes in Java
Object and Classes in JavaObject and Classes in Java
Object and Classes in Java
 
Unit3 part1-class
Unit3 part1-classUnit3 part1-class
Unit3 part1-class
 
Statics in java | Constructors | Exceptions in Java | String in java| class 3
Statics in java | Constructors | Exceptions in Java | String in java| class 3Statics in java | Constructors | Exceptions in Java | String in java| class 3
Statics in java | Constructors | Exceptions in Java | String in java| class 3
 
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
Collection Framework in Java | Generics | Input-Output in Java | Serializatio...
 
Lecture - 5 Control Statement
Lecture - 5 Control StatementLecture - 5 Control Statement
Lecture - 5 Control Statement
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)
 
Core java Essentials
Core java EssentialsCore java Essentials
Core java Essentials
 
OOPs & Inheritance Notes
OOPs & Inheritance NotesOOPs & Inheritance Notes
OOPs & Inheritance Notes
 
Java Fundamentals
Java FundamentalsJava Fundamentals
Java Fundamentals
 
core java
core javacore java
core java
 
Chapter 4 - Defining Your Own Classes - Part I
Chapter 4 - Defining Your Own Classes - Part IChapter 4 - Defining Your Own Classes - Part I
Chapter 4 - Defining Your Own Classes - Part I
 
Lecture - 3 Variables-data type_operators_oops concept
Lecture - 3 Variables-data type_operators_oops conceptLecture - 3 Variables-data type_operators_oops concept
Lecture - 3 Variables-data type_operators_oops concept
 
Lecture - 2 Environment setup & JDK, JRE, JVM
Lecture - 2 Environment setup & JDK, JRE, JVMLecture - 2 Environment setup & JDK, JRE, JVM
Lecture - 2 Environment setup & JDK, JRE, JVM
 
Basic java for Android Developer
Basic java for Android DeveloperBasic java for Android Developer
Basic java for Android Developer
 
Packages and inbuilt classes of java
Packages and inbuilt classes of javaPackages and inbuilt classes of java
Packages and inbuilt classes of java
 

Viewers also liked

Chapter 4 Powerpoint
Chapter 4 PowerpointChapter 4 Powerpoint
Chapter 4 PowerpointGus Sandoval
 
Introduction to the Java(TM) Advanced Imaging API
Introduction to the Java(TM) Advanced Imaging APIIntroduction to the Java(TM) Advanced Imaging API
Introduction to the Java(TM) Advanced Imaging APIwhite paper
 
C0 review core java1
C0 review core java1C0 review core java1
C0 review core java1tam53pm1
 
Eo gaddis java_chapter_02_5e
Eo gaddis java_chapter_02_5eEo gaddis java_chapter_02_5e
Eo gaddis java_chapter_02_5eGina Bullock
 

Viewers also liked (8)

Chapter 4 Powerpoint
Chapter 4 PowerpointChapter 4 Powerpoint
Chapter 4 Powerpoint
 
Introduction to the Java(TM) Advanced Imaging API
Introduction to the Java(TM) Advanced Imaging APIIntroduction to the Java(TM) Advanced Imaging API
Introduction to the Java(TM) Advanced Imaging API
 
C0 review core java1
C0 review core java1C0 review core java1
C0 review core java1
 
Eo gaddis java_chapter_02_5e
Eo gaddis java_chapter_02_5eEo gaddis java_chapter_02_5e
Eo gaddis java_chapter_02_5e
 
Java basic
Java basicJava basic
Java basic
 
Java Programming - 01 intro to java
Java Programming - 01 intro to javaJava Programming - 01 intro to java
Java Programming - 01 intro to java
 
Control flow statements in java
Control flow statements in javaControl flow statements in java
Control flow statements in java
 
02 basic java programming and operators
02 basic java programming and operators02 basic java programming and operators
02 basic java programming and operators
 

Similar to Java Programming - 04 object oriented in java

packages and interfaces
packages and interfacespackages and interfaces
packages and interfacesmadhavi patil
 
object oriented programming using java, second sem BCA,UoM
object oriented programming using java, second sem BCA,UoMobject oriented programming using java, second sem BCA,UoM
object oriented programming using java, second sem BCA,UoMambikavenkatesh2
 
UNIT - IIInew.pptx
UNIT - IIInew.pptxUNIT - IIInew.pptx
UNIT - IIInew.pptxakila m
 
Defining classes-and-objects-1.0
Defining classes-and-objects-1.0Defining classes-and-objects-1.0
Defining classes-and-objects-1.0BG Java EE Course
 
constructors.pptx
constructors.pptxconstructors.pptx
constructors.pptxEpsiba1
 
CJP Unit-1 contd.pptx
CJP Unit-1 contd.pptxCJP Unit-1 contd.pptx
CJP Unit-1 contd.pptxRAJASEKHARV10
 
Classes, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaClasses, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaRadhika Talaviya
 
Chap-2 Classes & Methods.pptx
Chap-2 Classes & Methods.pptxChap-2 Classes & Methods.pptx
Chap-2 Classes & Methods.pptxchetanpatilcp783
 
Classes & objects new
Classes & objects newClasses & objects new
Classes & objects newlykado0dles
 
object oriented programming language by c++
object oriented programming language by c++object oriented programming language by c++
object oriented programming language by c++Mohamad Al_hsan
 
Week9 Intro to classes and objects in Java
Week9 Intro to classes and objects in JavaWeek9 Intro to classes and objects in Java
Week9 Intro to classes and objects in Javakjkleindorfer
 
C questions
C questionsC questions
C questionsparm112
 
CONSTRUCTORS IN C++ +2 COMPUTER SCIENCE
CONSTRUCTORS IN C++ +2 COMPUTER SCIENCECONSTRUCTORS IN C++ +2 COMPUTER SCIENCE
CONSTRUCTORS IN C++ +2 COMPUTER SCIENCEVenugopalavarma Raja
 

Similar to Java Programming - 04 object oriented in java (20)

packages and interfaces
packages and interfacespackages and interfaces
packages and interfaces
 
object oriented programming using java, second sem BCA,UoM
object oriented programming using java, second sem BCA,UoMobject oriented programming using java, second sem BCA,UoM
object oriented programming using java, second sem BCA,UoM
 
C# classes objects
C#  classes objectsC#  classes objects
C# classes objects
 
UNIT - IIInew.pptx
UNIT - IIInew.pptxUNIT - IIInew.pptx
UNIT - IIInew.pptx
 
Ch-2ppt.pptx
Ch-2ppt.pptxCh-2ppt.pptx
Ch-2ppt.pptx
 
Defining classes-and-objects-1.0
Defining classes-and-objects-1.0Defining classes-and-objects-1.0
Defining classes-and-objects-1.0
 
Sonu wiziq
Sonu wiziqSonu wiziq
Sonu wiziq
 
constructors.pptx
constructors.pptxconstructors.pptx
constructors.pptx
 
CJP Unit-1 contd.pptx
CJP Unit-1 contd.pptxCJP Unit-1 contd.pptx
CJP Unit-1 contd.pptx
 
Classes, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaClasses, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with Java
 
Chap-2 Classes & Methods.pptx
Chap-2 Classes & Methods.pptxChap-2 Classes & Methods.pptx
Chap-2 Classes & Methods.pptx
 
Classes & objects new
Classes & objects newClasses & objects new
Classes & objects new
 
object oriented programming language by c++
object oriented programming language by c++object oriented programming language by c++
object oriented programming language by c++
 
JAVA CONCEPTS
JAVA CONCEPTS JAVA CONCEPTS
JAVA CONCEPTS
 
Week9 Intro to classes and objects in Java
Week9 Intro to classes and objects in JavaWeek9 Intro to classes and objects in Java
Week9 Intro to classes and objects in Java
 
C questions
C questionsC questions
C questions
 
Unit ii
Unit   iiUnit   ii
Unit ii
 
CONSTRUCTORS IN C++ +2 COMPUTER SCIENCE
CONSTRUCTORS IN C++ +2 COMPUTER SCIENCECONSTRUCTORS IN C++ +2 COMPUTER SCIENCE
CONSTRUCTORS IN C++ +2 COMPUTER SCIENCE
 
Class and object
Class and objectClass and object
Class and object
 
Lecture 5
Lecture 5Lecture 5
Lecture 5
 

More from Danairat Thanabodithammachari

Thailand State Enterprise - Business Architecture and SE-AM
Thailand State Enterprise - Business Architecture and SE-AMThailand State Enterprise - Business Architecture and SE-AM
Thailand State Enterprise - Business Architecture and SE-AMDanairat Thanabodithammachari
 
Agile Organization and Enterprise Architecture v1129 Danairat
Agile Organization and Enterprise Architecture v1129 DanairatAgile Organization and Enterprise Architecture v1129 Danairat
Agile Organization and Enterprise Architecture v1129 DanairatDanairat Thanabodithammachari
 
Enterprise Architecture and Agile Organization Management v1076 Danairat
Enterprise Architecture and Agile Organization Management v1076 DanairatEnterprise Architecture and Agile Organization Management v1076 Danairat
Enterprise Architecture and Agile Organization Management v1076 DanairatDanairat Thanabodithammachari
 
Digital Transformation, Enterprise Architecture, Big Data by Danairat
Digital Transformation, Enterprise Architecture, Big Data by DanairatDigital Transformation, Enterprise Architecture, Big Data by Danairat
Digital Transformation, Enterprise Architecture, Big Data by DanairatDanairat Thanabodithammachari
 
Big data Hadoop Analytic and Data warehouse comparison guide
Big data Hadoop Analytic and Data warehouse comparison guideBig data Hadoop Analytic and Data warehouse comparison guide
Big data Hadoop Analytic and Data warehouse comparison guideDanairat Thanabodithammachari
 
Big data hadooop analytic and data warehouse comparison guide
Big data hadooop analytic and data warehouse comparison guideBig data hadooop analytic and data warehouse comparison guide
Big data hadooop analytic and data warehouse comparison guideDanairat Thanabodithammachari
 
Perl for System Automation - 01 Advanced File Processing
Perl for System Automation - 01 Advanced File ProcessingPerl for System Automation - 01 Advanced File Processing
Perl for System Automation - 01 Advanced File ProcessingDanairat Thanabodithammachari
 
JEE Programming - 08 Enterprise Application Deployment
JEE Programming - 08 Enterprise Application DeploymentJEE Programming - 08 Enterprise Application Deployment
JEE Programming - 08 Enterprise Application DeploymentDanairat Thanabodithammachari
 

More from Danairat Thanabodithammachari (20)

Thailand State Enterprise - Business Architecture and SE-AM
Thailand State Enterprise - Business Architecture and SE-AMThailand State Enterprise - Business Architecture and SE-AM
Thailand State Enterprise - Business Architecture and SE-AM
 
Agile Management
Agile ManagementAgile Management
Agile Management
 
Agile Organization and Enterprise Architecture v1129 Danairat
Agile Organization and Enterprise Architecture v1129 DanairatAgile Organization and Enterprise Architecture v1129 Danairat
Agile Organization and Enterprise Architecture v1129 Danairat
 
Blockchain for Management
Blockchain for ManagementBlockchain for Management
Blockchain for Management
 
Enterprise Architecture and Agile Organization Management v1076 Danairat
Enterprise Architecture and Agile Organization Management v1076 DanairatEnterprise Architecture and Agile Organization Management v1076 Danairat
Enterprise Architecture and Agile Organization Management v1076 Danairat
 
Agile Enterprise Architecture - Danairat
Agile Enterprise Architecture - DanairatAgile Enterprise Architecture - Danairat
Agile Enterprise Architecture - Danairat
 
Digital Transformation, Enterprise Architecture, Big Data by Danairat
Digital Transformation, Enterprise Architecture, Big Data by DanairatDigital Transformation, Enterprise Architecture, Big Data by Danairat
Digital Transformation, Enterprise Architecture, Big Data by Danairat
 
Big data Hadoop Analytic and Data warehouse comparison guide
Big data Hadoop Analytic and Data warehouse comparison guideBig data Hadoop Analytic and Data warehouse comparison guide
Big data Hadoop Analytic and Data warehouse comparison guide
 
Big data hadooop analytic and data warehouse comparison guide
Big data hadooop analytic and data warehouse comparison guideBig data hadooop analytic and data warehouse comparison guide
Big data hadooop analytic and data warehouse comparison guide
 
Perl for System Automation - 01 Advanced File Processing
Perl for System Automation - 01 Advanced File ProcessingPerl for System Automation - 01 Advanced File Processing
Perl for System Automation - 01 Advanced File Processing
 
Perl Programming - 04 Programming Database
Perl Programming - 04 Programming DatabasePerl Programming - 04 Programming Database
Perl Programming - 04 Programming Database
 
Perl Programming - 03 Programming File
Perl Programming - 03 Programming FilePerl Programming - 03 Programming File
Perl Programming - 03 Programming File
 
Perl Programming - 02 Regular Expression
Perl Programming - 02 Regular ExpressionPerl Programming - 02 Regular Expression
Perl Programming - 02 Regular Expression
 
Perl Programming - 01 Basic Perl
Perl Programming - 01 Basic PerlPerl Programming - 01 Basic Perl
Perl Programming - 01 Basic Perl
 
Setting up Hadoop YARN Clustering
Setting up Hadoop YARN ClusteringSetting up Hadoop YARN Clustering
Setting up Hadoop YARN Clustering
 
JEE Programming - 03 Model View Controller
JEE Programming - 03 Model View ControllerJEE Programming - 03 Model View Controller
JEE Programming - 03 Model View Controller
 
JEE Programming - 05 JSP
JEE Programming - 05 JSPJEE Programming - 05 JSP
JEE Programming - 05 JSP
 
JEE Programming - 04 Java Servlets
JEE Programming - 04 Java ServletsJEE Programming - 04 Java Servlets
JEE Programming - 04 Java Servlets
 
JEE Programming - 08 Enterprise Application Deployment
JEE Programming - 08 Enterprise Application DeploymentJEE Programming - 08 Enterprise Application Deployment
JEE Programming - 08 Enterprise Application Deployment
 
JEE Programming - 07 EJB Programming
JEE Programming - 07 EJB ProgrammingJEE Programming - 07 EJB Programming
JEE Programming - 07 EJB Programming
 

Recently uploaded

Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsMehedi Hasan Shohan
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 

Recently uploaded (20)

Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software Solutions
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 

Java Programming - 04 object oriented in java

  • 1. Module 04 – Object Oriented in Java Danairat T. Line ID: Danairat FB: Danairat Thanabodithammachari +668-1559-1446
  • 2. Fundamental Java Programming The Course Outline Module 01 – Introduction to Java Module 02 – Basic Java Programming Module 03 – Control Flow and Exception Handling Module 04 – Object Oriented in Java Module 05 – Java Package and Access Control Module 06 – Java File IO Module 07 – Java Networking Module 08 – Java Threading
  • 3. Module 04 – Object Oriented in Java • Java Class • Java Object • Java Variable • Java Method and Constructor • Abstraction • Encapsulation • Inheritance • Polymorphism
  • 4. Java Class A class is a blueprint or prototype from which objects are created. This section defines a class that models the state and behavior of a real-world object. It intentionally focuses on the basics, showing how even a simple class can cleanly model state and behavior.
  • 5. Java Object Java Object is conceptually similar to real-world objects. They consist of state and behavior. An object stores its state in fields (variables) and exposes its behavior through methods. Methods operate on an object's internal state. Hiding internal state is known as data encapsulation Class Object 1 Object 2 Blueprint Instance
  • 6. Java Class Syntax ["public"] ["abstract"|"final"]"class" Class_name ["extends" object_name] ["implements" interface_name] "{" // properties declarations // behavior declarations "}"
  • 7. Class Members Class consists from two main members:- • Variable • Method Variable Member variables in a class—these are called fields. - Class – static member - Object – instance member Variables in a method or block of code—these are called local variables. Variables in method declarations—these are called parameters.
  • 8. Method [ "public" | "private" | "protected" ] [ "final" ] [ "static" | "abstract" ] return_data_type method_name "(" parameter_list ")" "{" // some defining actions "}" public static void example1() {} public static int add2(int x) {x+=2; return x;} public static double example3(int x, double d) {return x*d;} public static void example4(int x, int y, boolean flag) {} public static void example5(int arr[]) {} // note: this is object
  • 9. Type of Java Method 1. Constructor methods These allow class objects to be created with fields initialized to values as determined by the methods' parameters. This allows objects to start with values appropriate to use public Box() {length=0;width=0;height=0;} // default is point public Box(int l,int w,int h) // allows giving initial size {length=l; width=w; height=h;} 2. Accessor (or observer) methods read property (ie. field variable) values and are conventionally named getField() or whatever the property is called. 3. Mutator (or transformer) methods set property values and are often named setField() etc. Mutators can be used to ensure that the property's value is valid in both range and type. 4. Helper methods support modular of code structure in a unit of working.
  • 10. Overloading Method The Java programming language supports overloading methods, and Java can distinguish between methods with different method signatures (Method Name, Argument Type, Number of Argument). public class TouchPointer { ... public void draw(int i) { ... } public void draw(double f) { ... } public void draw(int i, int j) { ... } }
  • 11. Constructor When you create a new instance (a new object) of a class using the new keyword, a constructor for that class is called. Constructors are used to initialize the instance variables (fields) of an object. Constructors are similar to methods, but with some important differences. • Constructor name is class name. Eg. YourClassName() {} • Default constructor. If you don't define a constructor for a class, a default parameterless constructor is automatically created by the compiler. The default constructor calls the default parent constructor (super()) and initializes all instance variables to default value. • Default constructor is created only if there are no constructors. If you define any constructor for your class, no default constructor is automatically created.
  • 12. Differences between methods and constructors 1. There is no return type given in a constructor signature (header). The value is this object itself so there is no need to indicate a return value. 2. There is no return statement in the body of the constructor. 3. The first line of a constructor must either be a call on another constructor in the same class (using this), or a call on the superclass constructor (using super). If the first line is neither of these, the compiler automatically inserts a call to the parameterless super class constructor.
  • 13. LAB – ConstructTest1 public class ConstructTest { int value1; int value2; ConstructTest() { value1 = 10; value2 = 20; System.out.println("Inside Constructor"); } public void display() { System.out.println("Value1 === " + value1); System.out.println("Value2 === " + value2); } public static void main(String[] args) { ConstructTest c1 = new ConstructTest(); c1.display(); } } Inside Constructor Value1 === 10 Value2 === 20 Creating Object HereCreating Reference Activating Method
  • 14. LAB - Constructor Overloading class ConstrutOverloadDemo { int value1; int value2; ConstrutOverloadDemo() { value1 = 10; value2 = 20; System.out.println("Inside 1st Constructor"); } ConstrutOverloadDemo(int a) { value1 = a; System.out.println("Inside 2nd Constructor"); } ConstrutOverloadDemo(int a, int b) { value1 = a; value2 = b; System.out.println("Inside 3rd Constructor"); } public void display() { System.out.println("Value1 === " + value1); System.out.println("Value2 === " + value2); } public static void main(String[] args) { ConstrutOverloadDemo c1 = new ConstrutOverloadDemo(); ConstrutOverloadDemo c2 = new ConstrutOverloadDemo(30); ConstrutOverloadDemo c3 = new ConstrutOverloadDemo(30, 40); c1.display(); c2.display(); c3.display(); } }
  • 15. LAB - Constructor Chain class ConstrucChainDemo{ int value1; int value2; ConstrucChainDemo(){ value1 = 1; value2 = 2; System.out.println("Inside 1st Parent Constructor"); } ConstrucChainDemo(int a, int b){ value1 = a; value2 = b; Syastem.out.println("Inside 2nd Parent Constructor"); } } class ConstrucChild extends ConstrucChainDemo{ int value3; int value4; ConstrucChild(){ super(11,22); value3 = 3; value4 = 4; System.out.println("Inside the Constructor of Child"); } public void display(){ System.out.println("Value1 === "+value1); System.out.println("Value2 === "+value2); System.out.println("Value3 === "+value3); System.out.println("Value4 === "+value4); } } public static void main(String args[]){ ConstrucChild c1 = new ConstrucChild(); c1.display(); }
  • 16. Object Oriented History The sense of object-oriented programming term seems to make their first appearance at MIT in the late 1950s Object-oriented programming is modeled on how in the real world objects are made up of many kinds of smaller objects. The Smalltalk language, which was developed at Xerox PARC (by Alan Kay and others) in the 1970s, introduced the term object-oriented programming to represent the pervasive use of objects and messages as the basis for computation.
  • 17. Abstraction Abstraction(hiding implementation) focuses on the outside view of an object.. (i.e. the interface) Abstraction is an essential element for OO which manages the complexity. In a sense when someone works on a computer not necessary that he should know the working of each and every part of the computer. interface Customer { void printCustomer (int i); }
  • 18. Encapsulation Encapsulation (hiding information) prevents clients from seeing its inside view, where the behavior of the abstraction is implemented It is the mechanism that binds together state and behavior in manipulates and keeps both safe from outside interference and misuse. class Customer { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }
  • 19. Inheritance It is the process by which one object acquires the properties of another object. This supports the hierarchical classification. Without the use of hierarchies each object would need to define all its characteristics explicitly. However by use of inheritance, an object need only define those qualities that make it unique within its class. Java use “extend” keyword to inherit properties and behavior from super to its sub class. class Customer { String name; public String getName() { } } class MemberCustomer extends Customer { int collectedPoints; }
  • 20. Polymorphism The ability of the object design to group object behavior from different types. So by using this, one object can be treated like another even it came from difference hierarchy. The programmers can focus on selected behavior by no need to know the exact type of object in advance and this is being implemented at runtime.
  • 21. Defining the Behavior public interface IFace_Printable { public void printNow(); }
  • 22. Defining Classes which are the same behavior public class CustomerInfo implements IFace_Printable{ @Override public void printNow() { System.out.println("Read Customer Table... CustomerInfo. Done."); } } public class ProductInfo implements IFace_Printable{ @Override public void printNow() { System.out.println("Reading Product Table... ProductInfo. Done."); } }
  • 23. Create Polymorphic Method public class PrintServer { private IFace_Printable iFacePrintable; PrintServer(IFace_Printable iFacePrintable){ this.iFacePrintable = iFacePrintable; } public void printNowWraper(){ iFacePrintable.printNow(); } }
  • 24. Create Test Client for the Polymorphic Method public class PrintClientApplication { private static CustomerInfo customerInfo = new CustomerInfo(); private static ProductInfo productInfo = new ProductInfo(); public static void main(String [] args) { new PrintServer(customerInfo).printNowWraper(); new PrintServer(productInfo).printNowWraper(); } }
  • 25. Danairat T. Line ID: Danairat FB: Danairat Thanabodithammachari +668-1559-1446 Thank you