Creator

mostfunnyvideo

Watch videos from mostfunnyvideo on Febspot. Browse 132 published videos.

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Abstract Class in Java

Abstract Class in Java

4 views
An abstract class is a class that is declared abstract —it may or may not include abstract methods. Abstract classes cannot be instantiated, but they can be subclassed.
Practising Dynamic Method Dispatch

Practising Dynamic Method Dispatch

6 views
Dynamic method dispatch is the mechanism in which a call to an overridden method is resolved at run time instead of compile time. This is an important concept because of how...
Method Overriding in Java

Method Overriding in Java

13 views
In Java, method overriding occurs when a subclass (child class) has the same method as the parent class. In other words, method overriding occurs when a subclass provides a...
this vs super in Java

this vs super in Java

7 views
In java, super keyword is used to access methods of the parent class while this is used to access methods of the current class. this keyword is a reserved keyword in java i.e,...
Parametrized Constructor in Java

Parametrized Constructor in Java

14 views
A parameterized constructor accepts parameters with which you can initialize the instance variables. Using parameterized constructor, you can initialize the class variables...
Constructors in Inheritance (Java)

Constructors in Inheritance (Java)

10 views
Constructors in Java are used to initialize the values of the attributes of the object serving the goal to bring Java closer to the real world. We already have a default...