In the last tutorial we discussed abstract class which is used for achieving partial abstraction. Unlike abstract class an interface is used for full abstraction…. [Read More]
Abstract Class in Java with example
A class that is declared using “abstract” keyword is known as abstract class. It can have abstract methods(methods without body) as well as concrete methods… [Read More]
Inner classes in java: Anonymous inner and static nested class
What is an inner class? Inner class are defined inside the body of another class (known as outer class). These classes can have access modifier… [Read More]
Java static import with example
Static import allows you to access the static member of a class directly without using the fully qualified name. To understand this topic, you should… [Read More]
Java static constructor – Is it really Possible to have them in Java?
Have you heard of static constructor in Java? I guess yes but the fact is that they are not allowed in Java. A constructor can not… [Read More]
Java – static variable with example
A static variable is common to all the instances (or objects) of the class because it is a class level variable. In other words you… [Read More]
Difference between static and non-static members in Java
Java is a Object Oriented Programming(OOP) language, which is often interpreted that we need objects to access methods and variables of a class, however this… [Read More]
Java finally block when return statement is encountered
In my last tutorial, we discussed about finally block, which is used with a try block and always execute whether exception occurs or not. Here… [Read More]
How to get current date and time in java
By using SimpleDateFormat and Date/Calendar class, we can easily get current date and time in Java. In this tutorial we will see how to get… [Read More]
Difference Between Abstract Class and Interface in Java
In this article, we will discuss the difference between Abstract Class and Interface in Java with examples. I have covered the abstract class and interface in… [Read More]
- « Previous Page
- 1
- …
- 58
- 59
- 60
- 61
- 62
- …
- 65
- Next Page »