#24 Methods in Java

  Рет қаралды 260,145

Telusko

Telusko

Күн бұрын

Пікірлер: 49
@christyaldridge3839
@christyaldridge3839 7 ай бұрын
I have never really understood the concept of Class, Methods and Object until i watched this video... you really broke it down brother...Excellent instructions
@harshavardhan891
@harshavardhan891 Ай бұрын
9:53 We can't ignore dude... Coz it's funny 😂😂
@abhishekmitra9712
@abhishekmitra9712 Жыл бұрын
Watching this video today and realized that your joke about "Nothing phone" actually became true. There is actually something called nothing phone.😄
@why90t
@why90t Ай бұрын
True
@Sorjen108
@Sorjen108 Жыл бұрын
Nothing phone 🤣 Thanks for those great updated videos! Much love from Mauritius
@smittt20
@smittt20 3 ай бұрын
The kind of details in the video like explaining every single word from void to object to function helped me a lot, i have never understood class and object effectively until now. Thanks a lot sir
@mango-strawberry
@mango-strawberry Жыл бұрын
Your explanation is extremely good
@sidharthansidhu4783
@sidharthansidhu4783 Жыл бұрын
It is weird how a Computer returns a pen😄. Excellent teaching 😍
@Lwa-fq5yz
@Lwa-fq5yz 4 ай бұрын
🤣
@burpeesquad
@burpeesquad Жыл бұрын
The "Nothing" joke hits hard. haha loved it 😂
@Tanned_guy
@Tanned_guy Жыл бұрын
Excellent teaching.
@melwinsanthosh8135
@melwinsanthosh8135 Жыл бұрын
You are teaching very well than my teachers
@heycreatives
@heycreatives Жыл бұрын
Way of explain its really good.even don't know java also easy to understand...
@Nenu-x9k
@Nenu-x9k Ай бұрын
Thank you so much sir🙂, Your teaching is extremely good👌👌👌🤝
@wesjales5578
@wesjales5578 8 ай бұрын
Why are youtube videos literally alway better then in person lectures?
@DarkyBoy-n1i
@DarkyBoy-n1i 4 ай бұрын
But you teach well and I've never seen a teacher like you.
@NoName-im9rp
@NoName-im9rp Жыл бұрын
awesome sir keep it up
@Gunasekhar-zj6eh
@Gunasekhar-zj6eh 4 ай бұрын
what is the environment you are using?
@juturtaur298
@juturtaur298 Жыл бұрын
Thank you sir
@RishiKBose-25
@RishiKBose-25 10 ай бұрын
Sir, it would be advisable to update your IDE promptly.
@Logilogii
@Logilogii 2 ай бұрын
Great full ❤
@AriRam-xs7ie
@AriRam-xs7ie Жыл бұрын
Can you please explain about the ' . ' (Dot)operater and it's function
@yashaswinihm4288
@yashaswinihm4288 11 ай бұрын
It's basically used as a accessing operator. General used with object to access the data variables and methods
@debo8234
@debo8234 11 ай бұрын
poetic
@asuradevan1702
@asuradevan1702 Жыл бұрын
Well Teached
@everyone3602
@everyone3602 Жыл бұрын
dr's of java
@jb6652
@jb6652 8 ай бұрын
how do you make the terminal on right side like that?
@PoojaChindarkar-u9e
@PoojaChindarkar-u9e Жыл бұрын
its nice to get a nothing phone at 2 rupees!!
@sahanbandaranayake708
@sahanbandaranayake708 Жыл бұрын
great explanation 😍
@Marshal-y2y
@Marshal-y2y 3 ай бұрын
Will you please explain why this playlist is not a continuous one ,like when i watch video number 23 and go to 24 ....you were actually saying that in previous video we have seen something like calculator program which doesn't exists in the previous whichever i watched
@md.ikramulislam9708
@md.ikramulislam9708 2 ай бұрын
yeah the numbering is wrong sometimes ,that was in #22
@iamgold743
@iamgold743 6 ай бұрын
bro but compiler show : you shoud declare main method in computer class
@ozodbekhamidov987
@ozodbekhamidov987 Жыл бұрын
good exam
@JehanSaren
@JehanSaren Жыл бұрын
Hi Sir, please help🙏, how to access the variables inside the method to another method? Void Room1(){ name1="Elisa"; name2="Jefrey"; } Void Room2(){ i want to access "Elisa" }
@droste07
@droste07 Жыл бұрын
Then you have to create instance variable (variable inside the class) then you can access it anywhere in the class block!
@DarkyBoy-n1i
@DarkyBoy-n1i 4 ай бұрын
Sir, Who returns nothing?🤣🤣🤣🤣
@pratiktiwariramji
@pratiktiwariramji 3 ай бұрын
Exams 😂🤣
@AnuragRawat01
@AnuragRawat01 Жыл бұрын
9:45 Let's put Joke aside but you need to focus at learning Joke unlike this one 😅😅
@czarscrib3680
@czarscrib3680 6 ай бұрын
I knew about the nothing phone but I wasn't expecting that joke😅😅😅😅
@rkrk5378
@rkrk5378 Жыл бұрын
One SUGESSTION Sir, Please don't give different 2 examples, Please stick to one example through out the video.. if you are giving example of 'Computer' then please stick to that example only Instead of giving several examples like Car, Pen, Computer etc this could confuse a viewer.. OTHERWISE THE VIDEO WAS GOOD
@hozsumosa9322
@hozsumosa9322 Жыл бұрын
What poor jokes, poor + funny jokes 😁 9:52
@hareeshbhat2571
@hareeshbhat2571 9 ай бұрын
i didnt get laugh because of nothing but at last sir said ignore my poor jokes🤣🤣🤣
@singasong7679
@singasong7679 Жыл бұрын
method inside method give error. please correct this anyone ij() in k() method show error class A{ int i; int j; void ij(){ System.out.println("i and j"+i+ " "+j); } int show(){ return i+j; } class B extends A{ int k; void k(){ System.out.println("value of k"+k); ij(); } int sumijk(){ return show()+k; } public static void main(String[] args) { B obj =new B(); obj.i=44; obj.j=33; obj.k=21; int c=obj.sumijk(); System.out.println("value of sum"+c); } } }
@vanajakshibc4587
@vanajakshibc4587 8 ай бұрын
U have pass values to the methods which does calculation and returns values
@ahmedmoussa7519
@ahmedmoussa7519 9 ай бұрын
Nothing Phone
@rawcore
@rawcore 4 ай бұрын
09:50 Sponsored by Nothing huh 😂 .
@bantaigamer7123
@bantaigamer7123 8 ай бұрын
sir pls hindi me bataiye
@md.ikramulislam9708
@md.ikramulislam9708 2 ай бұрын
go to code with harry
@GurijalaSudhakarrao
@GurijalaSudhakarrao 4 ай бұрын
Super anna
#25 Method Overloading in Java
6:03
Telusko
Рет қаралды 231 М.
#22 Class and Object Practical in Java
15:36
Telusko
Рет қаралды 277 М.
Turn Off the Vacum And Sit Back and Laugh 🤣
00:34
SKITSFUL
Рет қаралды 6 МЛН
Thank you Santa
00:13
Nadir Show
Рет қаралды 33 МЛН
Long Nails 💅🏻 #shorts
00:50
Mr DegrEE
Рет қаралды 16 МЛН
#26 Stack And Heap in Java
12:37
Telusko
Рет қаралды 283 М.
Java methods 📞
11:05
Bro Code
Рет қаралды 149 М.
Learn Java in One Video - 15-minute Crash Course
14:54
Coding with John
Рет қаралды 768 М.
Stream API in Java
26:04
Telusko
Рет қаралды 358 М.
#51 This and Super Method in Java
12:11
Telusko
Рет қаралды 127 М.
Generics In Java - Full Simple Tutorial
17:34
Coding with John
Рет қаралды 1,1 МЛН
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 571 М.
Turn Off the Vacum And Sit Back and Laugh 🤣
00:34
SKITSFUL
Рет қаралды 6 МЛН