#66 What is Interface in Java

  Рет қаралды 173,654

Telusko

Telusko

Жыл бұрын

Check out our courses:
Spring and Microservices Weekend Live Batch : bit.ly/spring-live-weekend
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : bit.ly/java-spring-cloud
Udemy Courses:
Java:- bit.ly/JavaUdemyTelusko
Spring:- bit.ly/SpringUdemyTelusko
Java For Programmers:- bit.ly/javaProgrammers
For More Queries WhatsApp or Call on : +919008963671
website : courses.telusko.com/
In this lecture we will learn:
- What is an interface in java?
- Use of interface
- implements keyword in an interface
- Variables in an interface
#1
Interface:-
In an abstract class, we can have both abstract methods as well as normal or concrete methods.
- If your class has only abstract methods then instead of using class, you can simply use an interface in place of it.
- Interface is not any class.
- Every method in an interface is public and abstract by default.
- Even if you do not use two keywords (public and abstract) with methods then also it will not give an error in an interface. By default, it will consider all methods as public and abstract.
- We cannot instantiate an interface.
- Interface only shows the design and it does not provide any implementation.
- To provide an implementation of methods, you need to create a class and instantiate it also.
e.g,
interface A
{
methods()----
}
#2
implements keyword:-
To implement an interface, we use the keyword - implements.
- If you use the implements keyword with class, then it is compulsory to give an implementation of all the methods that are defined in an interface.
- If you do not give an implementation of all methods then it will make your class an abstract class by default.
- So, to make a concrete class, you have to give the implementation of all methods present in an interface.
e.g.,
class B implements A
{
methods() {
statement;
}
------
}
#3
Variables in an interface:-
- We can call the methods of an interface by creating an object of the class that implements an interface.
- We can also declare variables in an interface.
- All the variables in an interface are final and static by default.
- So, we first have to initialize the variables in an interface.
- As a variable is static in an interface, then you do not need to create an object for it. You can directly call the variable by using the interface name.
e.g., A.area; (here, area is a variable initialized in an interface)
- As the variable is final, you can not change the value of that variable after initializing it once.
-Interface does not have its own memory in the heap.
Github repo : github.com/navinreddy20/Javac...
Java:- bit.ly/JavaUdemyTelusko
Spring:- bit.ly/SpringUdemyTelusko
More Learning :
Java :- bit.ly/3x6rr0N
Python :- bit.ly/3GRc7JX
Django :- bit.ly/3MmoJK6
JavaScript :- bit.ly/3tiAlHo
Node JS :- bit.ly/3GT4liq
Rest Api :-bit.ly/3MjhZwt
Servlet :- bit.ly/3Q7eA7k
Spring Framework :- bit.ly/3xi7buh
Design Patterns in Java :- bit.ly/3MocXiq
Docker :- bit.ly/3xjWzLA
Blockchain Tutorial :- bit.ly/3NSbOkc
Corda Tutorial:- bit.ly/3thbUKa
Hyperledger Fabric :- bit.ly/38RZCRB
NoSQL Tutorial :- bit.ly/3aJpRuc
Mysql Tutorial :- bit.ly/3thpr4L
Data Structures using Java :- bit.ly/3MuJa7S
Git Tutorial :- bit.ly/3NXyCPu
Donation:
PayPal Id : navinreddy20
www.telusko.com

Пікірлер: 37
@thusith-tec307
@thusith-tec307 Жыл бұрын
Today I subscribed you after watching this video. Your explanation and English pronouncing are better than others. I respect you my new Teacher ❤. Love from Sri Lanka
@DeeperRed-of1gp
@DeeperRed-of1gp 3 ай бұрын
At 7:26 it is said that "we are doing implement not extends so only methods are available and variables are not available". Actually, regardless of what we do implementation of interface or extends of parent class, the variables also gets passed on in child. When we do Subclass obj = new Subclass(); we can see that variables are accessible. The thing with interface is that as the variables are final, so we can't change it. But it is available in child class! Maybe it was just Slip of tongue by Telusko! Enjoying the series so much! Thank you for posting it!❤
@DeeperRed-of1gp
@DeeperRed-of1gp 2 ай бұрын
Actually according to GPT , In Java, static fields declared in interfaces are accessible through the implementing class, not inherited. When we access B.age in above example in main method, it's not due to inheritance, but rather because interface fields are implicitly public, static, and final. In our case, age is a static field of the A interface, which means it can be accessed using the interface name itself (A.age) or through any class that implements the interface (B.age). So, while it may seem like the field is inherited, it's actually being accessed through the interface. This behavior allows for constants and other shared data to be accessed consistently through the interface, regardless of the implementing class.
@rapidken
@rapidken Жыл бұрын
Great playlist! There are some other videos in this course playlist that explain the terms used in this one. Feel free to give them a look if you're in need of a quick refresh! - Abstract and Anonymous class: kzfaq.info/get/bejne/ar-eeqWA3qeWgWg.html - Static Variable: kzfaq.info/get/bejne/ba6JlLSA3tzbZ4U.html - Static variable Example: kzfaq.info/get/bejne/ba6JlLSA3tzbZ4U.html - Heap: kzfaq.info/get/bejne/la17Zrqgq6yvhXk.html - Heap memory: kzfaq.info/get/bejne/mbxdprKhtM3Tlmw.html
@jibonjibon8231
@jibonjibon8231 Жыл бұрын
Your Process of explaining and the step by step developed example is just blowing my minds. Tomorrow is my java final exam. I have regrate that why I didn't follow you from before! Your teaching system is well pre-planed, clear. I have a request, plz don't stop making tutorial. Keep doing by this way of explaining. Need Python ,framework, Algorithm from you.
@ramyapinapothu9901
@ramyapinapothu9901 11 ай бұрын
Amezing explination everyone saying only theory u are the only one following practical manner ur having great explanation
@obaldalmeida6308
@obaldalmeida6308 Жыл бұрын
I have been watching Navin sirs old vedios and found this gem ....good to know you are doing well....looking fresh sir ✨ with an upgrade
@AmarGrg
@AmarGrg Жыл бұрын
Hi @Telusko thank you very much for all those wonderful videos. Just started learning java and I am already learning alot. Have a quick question for you, while doing PHP we used to write interfaces for the model entity class, what do you think about it? what might be the pros and cons?
@projyoti7489
@projyoti7489 2 ай бұрын
What a type of teaching skills ! Mind-blowing
@mangarajmohanty12
@mangarajmohanty12 Ай бұрын
That's not my age 💀🌚😅
@daulitech219
@daulitech219 4 ай бұрын
I read Interface through a book but I couldn't understand it, until I found your video. Thanks
@alwinvj6487
@alwinvj6487 Жыл бұрын
Thanks for this video🤗
@manas332
@manas332 13 күн бұрын
Excellent explanation
@Programing-lo3og
@Programing-lo3og 2 ай бұрын
Thanks You Sir
@edgbaston149
@edgbaston149 Жыл бұрын
Thank you so much
@roshanekka8293
@roshanekka8293 4 ай бұрын
nice explanation
@sriemandi3978
@sriemandi3978 6 ай бұрын
Merry Christmas Naveen bro
@rajeshwarijindam-dx3xz
@rajeshwarijindam-dx3xz Жыл бұрын
Anna mi teaching baa super undhi
@Nothingtosaymore
@Nothingtosaymore 2 ай бұрын
Thank you
@Ambitious675
@Ambitious675 Жыл бұрын
Thank you so much sir :)
@adityamishra_11
@adityamishra_11 6 ай бұрын
Are we take scanner (input) at the time of declaring any variables inside the interface.?
@adityamishra_11
@adityamishra_11 6 ай бұрын
@Telusko.
@srimantamondal8769
@srimantamondal8769 Жыл бұрын
Can someone tell me why inside println(), "x:" is used. This variable "x" is not declared anywhere and is not giving any error. Also if it is not a variable then let me know what it is.
@santhosh-benz7
@santhosh-benz7 Жыл бұрын
Here inside the println(), "x:" is used , it is provided by the IDE ( here VS code ) , which means it remains you to code here or pass the parameter , which makes you aware about the line of code . It needs some thing based on the code . I think you can Understand 😅
@shubhrajit2117
@shubhrajit2117 25 күн бұрын
You can disable it by going to settings -> Java hints -> None
@Hemanth83439
@Hemanth83439 Жыл бұрын
kollada mona 👌
@sushmithakn6003
@sushmithakn6003 4 ай бұрын
Why this error come - failed to resolve main method code lens :inter faceis not a valid java identifier
@raghavsood768
@raghavsood768 Жыл бұрын
Notes: All variables inside interface are static and final
@mohamedmurshid9794
@mohamedmurshid9794 Жыл бұрын
and public by default too. all the methods inside interface are public and abstract.
@mehakfatima6531
@mehakfatima6531 Жыл бұрын
​@@mohamedmurshid9794 well they have to be public so that the abstract methods inside it can be used further in derived classes or the whole point of creating a interface will be nothing
@mohamedmurshid9794
@mohamedmurshid9794 Жыл бұрын
@@mehakfatima6531 yep true. But i just added those are public too. Not only static and final. Thank you for this comment.🤗
@filmbuzz9419
@filmbuzz9419 Ай бұрын
Can i implement another method in class B
@AYANCSE-pg7zu
@AYANCSE-pg7zu Жыл бұрын
Thanks
@TochukwuVictor-qe4xd
@TochukwuVictor-qe4xd Ай бұрын
❤❤
@sheikhnasir3437
@sheikhnasir3437 15 күн бұрын
6:13 Funniest part 😂
@AbuIshaqAlShafii
@AbuIshaqAlShafii 4 ай бұрын
5:12
@abhi._77
@abhi._77 Жыл бұрын
Nipora
#67 More on Interfaces in Java
3:22
Telusko
Рет қаралды 73 М.
#42 This keyword in Java
9:45
Telusko
Рет қаралды 114 М.
Despicable Me Fart Blaster
00:51
_vector_
Рет қаралды 19 МЛН
Red❤️+Green💚=
00:38
ISSEI / いっせい
Рет қаралды 65 МЛН
#65 Need of Interface in Java
8:32
Telusko
Рет қаралды 113 М.
#26 Stack And Heap in Java
12:37
Telusko
Рет қаралды 209 М.
Interface in Java | Learn Coding
15:09
Learn Coding
Рет қаралды 689 М.
#61 Abstract Keyword in Java
12:09
Telusko
Рет қаралды 129 М.
#75 Types of Interface in Java
4:37
Telusko
Рет қаралды 59 М.
iPhone 15 Pro в реальной жизни
24:07
HUDAKOV
Рет қаралды 351 М.
Отдых для геймера? 😮‍💨 Hiper Engine B50
1:00
Samsung Galaxy 🔥 #shorts  #trending #youtubeshorts  #shortvideo ujjawal4u
0:10
Ujjawal4u. 120k Views . 4 hours ago
Рет қаралды 7 МЛН
Что не так с раскладушками? #samsung #fold
0:42