Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: Blog

How can you achieve Multiple Inheritance in Java? 0

How can you achieve Multiple Inheritance in Java?

Java’s interface can be used to implement multiple inheritance, with one important difference from c++ way of doing multiple inheritance: the inherited interfaces must be abstract. This obviates the need to choose between different...

Does Java have destructors? 0

Does Java have destructors?

Java does not have destructors; but it has finalizers that does a similar job. Garbage collector does the job working in the background Here is the syntax public void finalize(){ } if an object...

HTML5 – Geolocation 0

HTML5 – Geolocation

Introduction To Geolocation The Position Object The Position Options Object Handling Errors Introduction To Geolocation Geolocation API is used to locate a user’s position in HTML5. Script can capture your latitude and longitude and...

Spring embedded database examples 0

Spring embedded database examples

Let us see how to configure the embedded database engines like HSQL, H2 and Derby in Spring framework. Technologies used : Spring 4.1.6.RELEASE jUnit 4.1.2 Gradle Embedded databases used : HSQLDB 2.3.2 H2 1.4.187...