SlideShare a Scribd company logo
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Hadoop?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Agenda For Today
➢ What is a Class?
➢ Constructors
➢ Structure of a Class
➢ Overview of objects
➢ Working with objects
➢ Using Multiple classes
➢ OOPS concepts
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is a Class?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is a Class?
 A class in java is a blueprint which includes all the data.
 It describes the state and behavior of a specific object.
Classes
Example :
Public class car {
Color
Model
Price
speedUp();
gearChange();
}
Syntax :
Variables
Class name
Car
Methods
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Member Variables
Member variables are used to store a data value
Types
Class variableInstance variableLocal variable
Member
variables
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Types of Variables
Local variable Instance variable Class variable
Local variables are declared
within the method of a class
Instance variable are declared in a
class but outside a method,
constructor or any block
Class / static variable has only one
copy that is shared by all the
different objects of a class
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Methods
 Describes the behavior of an object.
 Collection of statements that are grouped together to perform an operation.
Methods
Example : Name of the method
Functionality
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Constructors
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Constructors
 Block of code used to initialize an object
 Must have same name of the class
 No return type
 Automatically called when an object is created
Constructors
Type of Constructors
Default Constructor
Parameterized
Constructor
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Types of Constructors
➢ No argument
➢ Compiler provides default value, automatically created
➢ Accept arguments
➢ Provides different value to objects
Default Parameterized
Example : Example :
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Access Modifiers
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Access Modifiers
Public Private
Protected Default
Access Modifiers
Class, methods, variables and
constructors can be accessed from
any other class.
No modifier required. Access class,
variables, method in same package
but not from outside.
Methods, variables and constructors
are declared protected in a
superclass can be accessed only by
the subclasses.
Methods, variables and constructors
can only be accessed within the
declared class.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Access Modifiers
Access Modifiers Same Class Same Package Sub Class Other Packages
Public Y Y Y Y
Private Y N N N
Protected Y Y Y N
Default Y Y N N
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Structure of Classes
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Structure of Classes
Constructor
Member variables
Method
Name of the Class
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Overview of Objects
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Overview of Objects
 It is an entity that has state and behavior
 Instance of a class which can access data
Objects
➢ States of a Car : Color - Orange
Model - 1
Price - 50000
➢ Behavior of Car : Speed up
Change gear
Class - Car
(Blueprint )
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Working with Objects
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
InitializationInstantiationDeclaration
Working with Objects
Variable name
with a data type
“New” keyword
creates an object
Call to a constructor,
initializes new object
How can you create an object?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Working with Objects
Syntax :
 Objects to a class is created by using the keyword “new”.
 New allocates memory for the object.
Student student1 = new Student();
Object Name
Class Name Keyword
Constructor
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Working with Objects
Store data into object using a
constructor
Constructor
Stores data into objects by
invoking a method.
Method
Stores data into object through
reference variable
Reference
variable
Initialize an object?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Working with Multiple Classes
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Working with Multiple Classes
Constructor of Class A
Method of class A
Constructor of class B
Method of class B
Output :
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
OOPS Concepts
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Inheritance
 One class acquire properties (methods & fields) of another
 Class which inherits the properties – Child class/ derived class/ sub class
 Class whose properties are inherited – Parent class/ base class
Inheritance
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Types of Inheritance
Inheritance
Single HierarchicalMultilevel Hybrid
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Class B inherits the properties of A
Inheritance
Class A {
----
}
Public class B extends A {
----
----
}
Syntax:
Single
Hierarchical
Multilevel
Hybrid
Class A
Class B
Parent Class
Child class of A
Single
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Inheritance
Class A
Class B
Class C
Class A {
----
}
public class B extends A {
---
}
Public class C extends B {
---
}
Syntax:
Single
Hierarchical
Multilevel
Hybrid
Class B inherits the properties of A and Class B inherits the
properties of B
Parent class of B
Parent class of C
Child class of A
Child class of B
Multilevel
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Inheritance
Class A
Class B Class C
Class A {
----
}
public class B extends A {
----
}
Public class C extends A {
----
}
Syntax:
Single
Hierarchical
Multilevel
Hybrid
One class is inherited by many subclasses
Parent Class
Child Classes
Hierarchical
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Parent class for class D,
Child class of class A
Inheritance
Class A
Class B Class C
Class D
Single
Hierarchical
Multilevel
Hybrid
 Single + Multiple inheritance
 It can only be achieved through Interface.
Parent class for class B and class C
Hybrid
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Encapsulation
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Encapsulation
Encapsulation
 Binding the data and code together as a single unit.
 Securing data by hiding the implementation details to user.
Methods Variable
Class
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Encapsulation
Output :
Getter and setter methods
ABC
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Abstraction
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Abstraction
Abstraction
 Hides the implementation details and only provides the functionality to the user
 You can achieve abstraction using Abstract classes and Interfaces
Without
Abstraction
With
Abstraction
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Abstract Class
How can you use an abstract class?
Inherit it from another class and provide implementations to the abstract methods in it.
If a class has one abstract method, then the class must be declared abstract.
1
2
abstract class <class-name> { }
 Class contains the abstract keyword
 If a class is declared abstract, it cannot be instantiated
Syntax :
Abstract class
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Interface
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Interfaces
interface Car {
void changeGear (int newValue);
void speedup (int increment);
void applyBrakes (int decrement);
}
Interfaces
 Interface in java is a blueprint of a class.
 Each method in an interface are implicitly public and abstract.
 It does not contain any constructors.
Example :
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
class Audi implements Car {
int speed = 0;
int gear = 1;
void changeGear(int newValue) {
gear = newValue;
}
void speedUp(int increment) {
speed = speed + increment;
}
void applyBrakes(int decrement) {
speed = speed - decrement;
}
void printStates() {
System.out.println(" speed:" +
speed + " gear:" + gear);
}
}
Interfaces
To implement an interface?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Summary
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Java Classes Constructors Access Modifiers
Structure of a Class Overview of Objects OOPS Concepts
Java Classes | Java Tutorial for Beginners | Java Classes and Objects | Java Training | Edureka

More Related Content

PDF
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Edureka!
 
PDF
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Edureka!
 
PDF
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Edureka!
 
PPTX
Access modifiers in java
Madishetty Prathibha
 
PPTX
20.3 Java encapsulation
Intro C# Book
 
PDF
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
Edureka!
 
PPTX
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
PPS
Introduction to class in java
kamal kotecha
 
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Edureka!
 
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Edureka!
 
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Edureka!
 
Access modifiers in java
Madishetty Prathibha
 
20.3 Java encapsulation
Intro C# Book
 
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
Edureka!
 
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
Introduction to class in java
kamal kotecha
 

What's hot (20)

PPTX
Constructor in java
Pavith Gunasekara
 
PDF
Java Basic Oops Concept
atozknowledge .com
 
PDF
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Edureka!
 
PPTX
Static Data Members and Member Functions
MOHIT AGARWAL
 
PPT
Abstract class
Tony Nguyen
 
PPTX
Core java complete ppt(note)
arvind pandey
 
PPTX
MULTI THREADING IN JAVA
VINOTH R
 
PPTX
Constructor in java
SIVASHANKARIRAJAN
 
PPTX
This keyword in java
Hitesh Kumar
 
PPTX
Classes, objects in JAVA
Abhilash Nair
 
PPS
Java Exception handling
kamal kotecha
 
PPTX
Constructor in java
Madishetty Prathibha
 
PPTX
Access Modifier.pptx
Margaret Mary
 
PDF
Oops concepts || Object Oriented Programming Concepts in Java
Madishetty Prathibha
 
PPTX
Constructor in java
Hitesh Kumar
 
PPTX
Polymorphism
Nochiketa Chakraborty
 
PPTX
Inheritance in java
RahulAnanda1
 
PDF
Polymorphism In Java
Spotle.ai
 
PDF
Generics
Ravi_Kant_Sahu
 
Constructor in java
Pavith Gunasekara
 
Java Basic Oops Concept
atozknowledge .com
 
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Edureka!
 
Static Data Members and Member Functions
MOHIT AGARWAL
 
Abstract class
Tony Nguyen
 
Core java complete ppt(note)
arvind pandey
 
MULTI THREADING IN JAVA
VINOTH R
 
Constructor in java
SIVASHANKARIRAJAN
 
This keyword in java
Hitesh Kumar
 
Classes, objects in JAVA
Abhilash Nair
 
Java Exception handling
kamal kotecha
 
Constructor in java
Madishetty Prathibha
 
Access Modifier.pptx
Margaret Mary
 
Oops concepts || Object Oriented Programming Concepts in Java
Madishetty Prathibha
 
Constructor in java
Hitesh Kumar
 
Polymorphism
Nochiketa Chakraborty
 
Inheritance in java
RahulAnanda1
 
Polymorphism In Java
Spotle.ai
 
Generics
Ravi_Kant_Sahu
 
Ad

Similar to Java Classes | Java Tutorial for Beginners | Java Classes and Objects | Java Training | Edureka (20)

PPTX
UNIT I OOP AND JAVA FUNDAMENTALS CONSTRUCTOR
mohanrajm63
 
PPTX
Android Training (Java Review)
Khaled Anaqwa
 
PPTX
Object oriented concepts
Gousalya Ramachandran
 
PDF
Core Java Programming Language (JSE) : Chapter VI - Class Design
WebStackAcademy
 
PPTX
OOP in Java Presentation.pptx
mrxyz19
 
PPTX
Core java oop
Parth Shah
 
PPTX
PPT Lecture-1.4.pptx
HimanshuPandey957216
 
PPTX
4-OOPS.pptx
SatyamMishra237306
 
PPT
Chapter 5 (OOP Principles).ppt
henokmetaferia1
 
PPTX
chapter 5 concepts of object oriented programming
WondimuBantihun1
 
PPTX
Java 102 intro to object-oriented programming in java
agorolabs
 
PPTX
Shuvrojit Majumder . 25900120006 Object Oriented Programming (PCC-CS 503) ...
ShuvrojitMajumder
 
PPTX
Object Oriented Programming ! Batra Computer Centre
jatin batra
 
PPTX
Object Oriented Programming Tutorial.pptx
ethiouniverse
 
PPTX
Java OOPS Concept
Richa Gupta
 
PDF
JAVA-PPT'S.pdf
AnmolVerma363503
 
PPTX
JAVA-PPT'S-complete-chrome.pptx
KunalYadav65140
 
PPTX
JAVA-PPT'S.pptx
RaazIndia
 
PPTX
Object Oriented Programming.pptx
ShuvrojitMajumder
 
PDF
Oops concepts
ACCESS Health Digital
 
UNIT I OOP AND JAVA FUNDAMENTALS CONSTRUCTOR
mohanrajm63
 
Android Training (Java Review)
Khaled Anaqwa
 
Object oriented concepts
Gousalya Ramachandran
 
Core Java Programming Language (JSE) : Chapter VI - Class Design
WebStackAcademy
 
OOP in Java Presentation.pptx
mrxyz19
 
Core java oop
Parth Shah
 
PPT Lecture-1.4.pptx
HimanshuPandey957216
 
4-OOPS.pptx
SatyamMishra237306
 
Chapter 5 (OOP Principles).ppt
henokmetaferia1
 
chapter 5 concepts of object oriented programming
WondimuBantihun1
 
Java 102 intro to object-oriented programming in java
agorolabs
 
Shuvrojit Majumder . 25900120006 Object Oriented Programming (PCC-CS 503) ...
ShuvrojitMajumder
 
Object Oriented Programming ! Batra Computer Centre
jatin batra
 
Object Oriented Programming Tutorial.pptx
ethiouniverse
 
Java OOPS Concept
Richa Gupta
 
JAVA-PPT'S.pdf
AnmolVerma363503
 
JAVA-PPT'S-complete-chrome.pptx
KunalYadav65140
 
JAVA-PPT'S.pptx
RaazIndia
 
Object Oriented Programming.pptx
ShuvrojitMajumder
 
Oops concepts
ACCESS Health Digital
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 

Recently uploaded (20)

PDF
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Captain IT
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
Google’s NotebookLM Unveils Video Overviews
SOFTTECHHUB
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
PDF
agentic-ai-and-the-future-of-autonomous-systems.pdf
siddharthnetsavvies
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
PDF
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Captain IT
 
This slide provides an overview Technology
mineshkharadi333
 
Google’s NotebookLM Unveils Video Overviews
SOFTTECHHUB
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
agentic-ai-and-the-future-of-autonomous-systems.pdf
siddharthnetsavvies
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 

Java Classes | Java Tutorial for Beginners | Java Classes and Objects | Java Training | Edureka