Deepti S has Published 25 Articles

Object Model in Java

Deepti S

Deepti S

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

1K+ 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

1K+ 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

2K+ 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

297 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