Deepti S has Published 28 Articles

Filter Pattern in Java

Deepti S

Deepti S

Updated on 11-Jul-2023 10:33:38

293 Views

The Filter Design Pattern, also known as the Criteria Design Pattern, is a structural design pattern used by developers to filter objects based on different criteria. It enables decoupled filtering and logical operations by chaining multiple criteria into a single criterion. It provides two techniques for creating filters: filtering for ... Read More

Non-blocking Server in Java NIO

Deepti S

Deepti S

Updated on 15-May-2023 17:53:07

663 Views

Non-blocking Server Java NIO (New Input/Output) is a very powerful networking and file-handling application that functions as an alternative to Java's standard IO API. Due to the addition of more sophisticated features since JDK 4's introduction, it has quickly emerged as the preferred I/O system among numerous engineers. The improved ... Read More

Node.js vs Java

Deepti S

Deepti S

Updated on 15-May-2023 17:50:00

272 Views

Overview of Node.js vs Java Java has been a long-standing favorite for programmers worldwide, while Node.js is a relatively new JavaScript runtime environment. This article delves into the differences between Node.js and Java and aims to provide a better understanding of both tools and their respective applications. While we may ... Read More

Object Model in Java

Deepti S

Deepti S

Updated on 15-May-2023 17:48:15

694 Views

Overview of Object Model Have you ever thought about how software programs can see and communicate with the components that make them up? The object model is useful in this situation. Developers can represent those components as objects using sophisticated object-oriented techniques thanks to a strong system or interface. The ... Read More

Numbers in Java (With 0 Prefix and with Strings)

Deepti S

Deepti S

Updated on 15-May-2023 17:45:03

577 Views

Numbers in Java It's important to understand that the number class isn't a tangible class, but rather an abstract one. Inside it, we have a set of wrapper classes that define its functions. These wrapper classes include Integer, Byte, Double, Short, Float, and Long. You may notice that these are ... Read More

NotSerializableException in Java with Examples

Deepti S

Deepti S

Updated on 15-May-2023 17:33:49

824 Views

NotSerializableException in Java In Java programming, the NotSerializableException is a common exception that occurs when an object of a class is not Serializable. When an object is not Serializable, it means that the object cannot be converted into a sequence of bytes, which is required for data persistence and communication ... Read More

New Features of Java 12

Deepti S

Deepti S

Updated on 15-May-2023 17:32:26

206 Views

Introduction to New Features of Java 12 On March 19, 2019, Java 12 was made available. Several new and enhanced features included in Java 12's release make it a worthwhile upgrade over Java 11 in almost every way. Switch Expressions, Default CDS Archives, Shenandoah, and Microbenchmark Suite are a few ... Read More

Need of Concurrent Collections in Java

Deepti S

Deepti S

Updated on 15-May-2023 17:30:39

2K+ Views

Concurrent Collections in Java Java is a well-known computer language that supports concurrency and multithreading. Developers can use the synchronization keyword to guarantee correct synchronization between threads. Additionally, a variety of collections that can be used to hold and manipulate data are offered by Java's collection framework. The synchronized keyword ... Read More

Advertisements