Creator

mostfunnyvideo

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

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Final Keyword In Java

Final Keyword In Java

3 views
Definition and Usage. The final keyword is a non-access modifier used for classes, attributes and methods, which makes them non-changeable (impossible to inherit or override)....
Static Block In Java

Static Block In Java

3 views
In a Java class, a static block is a set of instructions that is run only once when a class is loaded into memory. A static block is also called a static initialization block....
Static Members In  Java

Static Members In Java

2 views
In Java, static members are those which belongs to the class and you can access these members without instantiating the class. The static keyword can be used with methods,...
Nested Inner Class in Java

Nested Inner Class in Java

2 views
A nested class is a member of its enclosing class. Non-static nested classes (inner classes) have access to other members of the enclosing class, even if they are declared...
Interfaces In Java

Interfaces In Java

8 views
An Interface in Java programming language is defined as an abstract type used to specify the behavior of a class. An interface in Java is a blueprint of a behaviour. A Java...