#62 Inner Class in Java

Описание к видео #62 Inner Class in Java

Check out our courses:

Enterprise Java Spring Microservices: https://go.telusko.com/enterpriseJava
Coupon: TELUSKO10 (10% Discount)

Master Java Spring Development : https://bit.ly/java-spring-cloud
Coupon: TELUSKO20 (20% Discount)

Udemy Courses:

Java:- https://bit.ly/JavaUdemyTelusko
Spring:- https://bit.ly/SpringUdemyTelusko
Java For Programmers:- https://bit.ly/javaProgrammers

For More Queries WhatsApp or Call on : +919008963671

website : https://courses.telusko.com/


In this lecture we will learn:
What is an inner class in Java?
Static inner classes in Java
Advantages Of inner class

#1
Inner Class:-
We can also create a class inside another class.
class A
{
class B
{
}
}
You can call the method of class B by using the dot operator in between both classes A and B.
A.B obj= new B();
A dollar sign will be introduced in a class name that has an inner class indicating two different classes.
A$B. class
You also need to create an object of the outer class, to call the methods of an inner class.

#2
Static Inner Class:-
An inner class can also be declared as static.
When an inner class is declared as static, then you do not need to create an object for it.
But an outer class can not be made static.

#3
Advantage of inner class:-
Nested classes represent a particular type of relationship that is it can access all the members of the outer class, including private.
Nested classes make the code more readable and maintainable.
It makes the code more optimize.


Github repo : https://github.com/navinreddy20/Javac...

Java:- https://bit.ly/JavaUdemyTelusko
Spring:- https://bit.ly/SpringUdemyTelusko

More Learning :

Java :- https://bit.ly/3x6rr0N
Python :- https://bit.ly/3GRc7JX
Django :- https://bit.ly/3MmoJK6

JavaScript :- https://bit.ly/3tiAlHo
Node JS :- https://bit.ly/3GT4liq

Rest Api :-https://bit.ly/3MjhZwt
Servlet :- https://bit.ly/3Q7eA7k
Spring Framework :- https://bit.ly/3xi7buh
Design Patterns in Java :- https://bit.ly/3MocXiq
Docker :- https://bit.ly/3xjWzLA

Blockchain Tutorial :- https://bit.ly/3NSbOkc
Corda Tutorial:- https://bit.ly/3thbUKa
Hyperledger Fabric :- https://bit.ly/38RZCRB

NoSQL Tutorial :- https://bit.ly/3aJpRuc
Mysql Tutorial :- https://bit.ly/3thpr4L

Data Structures using Java :- https://bit.ly/3MuJa7S
Git Tutorial :- https://bit.ly/3NXyCPu

Donation:
PayPal Id : navinreddy20
https://www.telusko.com

Комментарии

Информация по комментариям в разработке