If you’re in tech field or programming field more specifically, you might have worked with URL and URI classes. You might have extracted URL as a string from URI. But what’s the difference... Read More
Category: Java
‘static’ And ‘final’ Keywords In Java
Today we’ll understand the use of static and final keywords in Java. These two are important keywords of Java and are very significant. static Keyword The static keyword can be used with the var... Read More
Understanding Multi-threading In Java With Practical Example
Multithreading in Java allows multiple threads to work at same time. Threads can be described as the small units which work in the background. They work in a way such that main interface of an applica... Read More
Understanding Continue And Break Statements In Java
The break and continue keywords are the very important aspect of control structures in Java. Control Structures are the blocks of programming and consists of loops like for loop, while loop and if-el... Read More
How To Use Switch Statement In Android/Java?
In this tutorial, we’re going to explore how to use the Switch statement in developing Android apps using Java. We’re not going to use Android Studio for this purpose. We’re going to... Read More
Download And Install IntelliJ IDEA For Windows
IntelliJ IDEA is one of the best available Integrated Development Environment(IDE) for developing Java programs. It’s developed by the famous JetBrains. This tutorial is all about installing it ... Read More