Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: J2SE Category

jvm-memory 0

Java (JVM) Memory Types

Java has only two types of memory when it comes to JVM. Heap memory and Non-heap memory. All the other memory jargons you hear are logical part of either of these two. Heap Memory...

Difference between Abstract Class and Interface 0

Difference between Abstract Class and Interface

difference between Abstract Class and Interface? 1. Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default...

What is a transient variable? 0

What is a transient variable?

Transient variable can’t be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can’t be written...

What are the the new features in J2SE 5 or java 1.5 ? 0

What are the the new features in J2SE 5 or java 1.5 ?

Java 5.0 New Features Autoboxing/Unboxing Enumerations Varargs Enhanced for loop Metadata-Annotations Java Generics Java 5.0 New Features Java 5.0 New features are listed in short here Autoboxing/Unboxing Enumerations – with ‘enum’ keyword Varargs –...

Java 10 Features 0

Java 10 Features

Java SE 10 Download JDK 10 Java 10 will use the new versioning convention set out by Oracle this will see the version numbers following a YY.M format. So far the versions announced using...

Java 9 Features 0

Java 9 Features

Java SE 9 Download JDK 9 The first stable release of Java 9 was on September 21, 2017 Java 9 include below features Better support for multi-gigabyte heaps better native code integration Different default...

What is JDBC API? 0

What is JDBC API?

The latest version of JDBC API is 4.1 (comes Java SE 7). The API contains two packages: java.sql: provides core API. javax.sql: provides additional API for server side database capabilities. API specification for both...