Talking about volatile variable in Java

The volatile variable in Java has the effect of informing the change of its value to different threads if the variable is being used in multiple threads. For you to understand more, I made an example as follows:

In this example, we have two… Read More

Create Angular project using Angular CLI

Creating an Angular Project using the Angular CLI is nothing easier. You only need (after installing Angular CLI): Navigate to the directory where you want to create the Angular project Open terminal in macOS, Linux or command-line in Window Enter the following statement:

with… Read More

Install GraalVM on macOS

GraalVM is a high-performance virtual machine built by Oracle that can run applications written in JavaScript, Python, Ruby, R, JVM-based languages such as Java, Scala, Kotlin, and LLVM-based languages. like C and C++. Using GraalVM, you do not need to install many different software to… Read More