Core java
- 24 September
Java 9 – Process API Improvements
In this post, we will see about Java 9 process API improvements. Java improved its Process API in Java 9 version that includes new methods for Process class and two new interfaces ProcessHandle and ProcessHandle.Info. These methods are used to create a new process and get process information like process status, running time, process id, […]
- 22 September
PLAY SLOTOMANIA tHE #1 fREE SLOTS GAME
Completely! Slotomania has an enormous variety of free slot video games for you to spin and get pleasure from! Whether or not you’re in search of classic slots or video slots, they’re all free to play. Rest assured that we’re dedicated to creating all of our slot video games FUNtastic! They are all unique in […]
- 21 September
Slotomania Slots 32,000+ free Coins
Gather Slotomania Slots free coins now an take pleasure in common beautiful slot games. Gather free Slotomania Slots coins without having to go looking around for each freebie! Cell for Android, iOS, and Home windows. Play on Fb! Slotomania Slots Free Coins: 01. Gather 2,000+ Free Coins 02. Gather 1,999+ Free Coins 03. Accumulate 2,000+ […]
- 19 September
Java try with resources
In this post, we will see about Java try with resources Statement. Java try with resources is a feature of Java which was added into Java 7. It helps to close all the resources declared within try block. It automatically closes the resources after being used. A resource can be any file or a database […]
- 19 September
Java 9 – Javadoc Improvement
Java has upgraded its Javadoc for better user interaction and user-experience. It includes a simplified search, HTML generator, Doclet API, etc. What is Javadoc The Javadoc is a tool like javac and a part of JDK. It is used to generate HTML documentation of Java source code. If you ever visit to oracle site you […]
- 19 September
Java 9 – @SafeVarargs Annotation
In this post, we will see about @SafeVarargs Annotation in Java 9. The @SafeVarargs is an annotation that is used to perform safe operations. When a method takes variable arguments, then it may cause to unsafe operation, so the @SafeVarargs annotation tells to the compiler to perform safe operations. For example, if we don’t use […]
- 19 September
Java 9 – Anonymous Inner classes and Diamond Operator
Type inference is a feature of Java that was introduced in Java 7. Now, Java compiler can infer type of a data automatically. For example, if we create an ArrayList then we use the code like: [crayon-67414a881c881328237924/] You can see that Java 7 allows us to use empty diamond operator to avoid code redundancy. But […]
- 19 September
ArrayBlockingQueue in java
In this article, we will understand the Java concurrent queue, BlockingQueue. We will then go deep into it’s one of the implementation, ArrayBlockingQueue. What is BlockingQueue BlockingQueue interface was introduced in Java 5 under concurrent APIs and it represents a thread-safe queue in which elements can be added to and removed from. We can have […]
- 19 September
Java 9 – Private methods in interface
In this topic, we will discuss the private and private static methods inside an interface. interface in Java is a concept which is used to achieve abstraction. In early versions of Java, an interface can contain only abstract methods and constants until Java 8 which allows to add default and static methods as well. In […]