Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
@tanunjoyroy7993 жыл бұрын
Very good explanation !! Helped me a lot !
@फूलेदस्तक6 жыл бұрын
Sir Your teaching method is excellent
@ubaidansari34095 жыл бұрын
easy way to explain. thanks
@shaheenshaikh67016 жыл бұрын
sir , little doubt how can we write static Test x , is it possible to write class name n then var
@rajeshlenka83606 жыл бұрын
Sir please tell me ...how to stop execution of static block ?
@aniketjain38757 жыл бұрын
thank you for this video, Question:- while printing object in static block why its printing class name also please tell me
@venkateshv6265 жыл бұрын
Sir, I think the static block will recursively call it self and result in stack overflow.
@subhassmitapanda54752 жыл бұрын
Sir one question can we create object out side main method... In java??
@rajbhargav89475 жыл бұрын
If main is static... Which is a free access... Then why are we writing public in it
@CodeCraftWithQubais5 жыл бұрын
we are writing main method as PUBLIC STATIC VOID MAIN(STRING[] ARGS) the meaning of above statement is ....if it is public : then jvm can access that method from anywhere ,static: if it is static then jvm can access that method simply by its class name......although we are writing public because it can access from anywhere ......
@bhagyasudhir10604 жыл бұрын
See if one method is static it can be public ,private ,default or protected right.. public means... all can access(all packages) private means with in the class only..default means only one package..protected, with in the family..so if we represent static is public it accessible for all not few so that's y jvm represents static is public