Watch and track your favorite playlist.
Curated by: Telusko (106 videos)
Check out our courses: Mastering Agentic AI with Java : https://go.telusko.com/agentic-ai Coupon: TELUSKO10 (10% Discount) DevOps Bootcamp: https://go.telusko.com/complete-devops Coupon: TELUSKO10 (10% Discount) Master Java Spring Development : https://go.telusko.com/learn-master Coupon: TELUSKO10 (10% Discount) For More Queries WhatsApp or Call on : +919008963671 website : https://telusko.com/ Udemy Courses: Java Spring:- https://go.telusko.com/Udemyjavaspring Java:- https://go.telusko.com/udemyteluskojava Spring: https://go.telusko.com/udemyteluskospring Java For Programmers:- https://go.telusko.com/javaProgrammers Python : https://go.telusko.com/udemyteluskopython Git : https://go.telusko.com/udemyteluskogit Docker : https://go.telusko.com/udemyteluskodocker Instagram : https://www.instagram.com/navinreddyofficial/ Linkedin : https://in.linkedin.com/in/navinreddy20 WhatsApp : https://go.telusko.com/whatsapp TELUSKO Android App : https://go.telusko.com/TELUSKOAPP TELUSKO IOS App : https://apple.co/3SsgmU2 Discord : https://discord.gg/D8hWe9BqfF In this lecture we are discussing: 1)What is use static keyword in java? 2)At which place we can use static keyword. (discussing in upcoming next video) 3)when memory get allocated (extra information how static variable memory get allocated) 4)static variable vs instance method #1 Use of static keyword = when we are using static keyword with variable, block, method it become independent of object. e.g class{ static int a=5; } = a is not dependent on object .if we have two object obj1 and obj2 then both object able to access this variable. = when we are using static it become independent to object. #2 Four place we can use static keyword a) before variable declaration e.g class Calc{ static int s; } b) before a block class Calc{ static {System.out.println("this is static block);}} c) during method creation class Calc{public static void add(int num1,int num2){};} d) with concept of inner class (It is not discussed in this lecture) class OuterClass { int x = 10; static class InnerClass { int y = 5; } } #3 When memory get allocated = for that we need to know some term a)stack area b)heap area c)class loader system Step 1: when you compile the code you get .class file Step 2: when you are executing (java MainClass) first class loading to class loader System. Step 3: During class loading static variable initialize, static block get executed. Step 4: Since, static variable got memory in heap before object creation. Now we can say that it is independent of object. #4 Static variable vs instance variable Class Calc{ static int stA=100; //independent of object // we can use this by class name as well as object int inB=100; //dependent of object //we can only use this by object public static void main(String []args){ Calc obj1=new Calc(); Calc obj1=new Calc(); //for static variable System.out.println(Calc.stA); //use with class name System.out.println(obj1.stA); //use by object name //for instance variable //System.out.println(Calc.inB); //got an error --Cannot make a static reference to the non-static System.out.println(obj1.inB); //used by object name reference // = if we can change value static or instance what happen obj1.inB=1000; obj1.stA=2000; //static System.out.println(obj1.stA);//output: 2000 System.out.println(obj2.stA);//output: 2000 value changed for both obj1 and obj2 //it also show that static variable independent of objects //instance System.out.println(obj1.inB); // output: 1000 System.out.println(obj2.inB); // output: 100 no change in obj2 } } Remember one thing: i)we can use static property, member inside non static block or method without object creation. ii) But we cannot use non static property or method inside static block or method without object creation. Github repo : https://github.com/navinreddy20/Javacode.git 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