strictfp keyword in Java
strictfp is one of the keywords introduced in Java to ensure portability and to restore platform independency. Floating point calculations[…]
Read moreAmplify your java knowledge with javagyansite
strictfp is one of the keywords introduced in Java to ensure portability and to restore platform independency. Floating point calculations[…]
Read moreReference Type Casting Objects of classes also can be cast into objects of other classes when the source and destination[…]
Read moreWe have the following numeric primitive types: Apart of the above, we have the non numeric primitive type “char” :[…]
Read moreWhenever methods are called stack is formed and whenever an exception is first thrown from the top of the stack[…]
Read morethrow An application can explicitly throw exception using the throw keyword.We can use throw for explicitly throwing custom exceptions. The syntax[…]
Read moreExceptions thrown during execution of the try block can be caught and handled in a catch block. A finally block[…]
Read moreThe automatic conversion of primitive data types into its equivalent Wrapper type is known as boxing and opposite operation is[…]
Read moreIn this post, we will dive deep into “Object Class in Java”. Let’s get started. What is Object Class in[…]
Read moreA deadlock is a situation where a thread is waiting for an object lock that another thread holds, and this[…]
Read moreSynchronization in Java plays a crucial role in achieving thread safety and maintaining consistency when multiple threads access shared resources.[…]
Read more