java
Annotations In Java
Java annotations are metadata (data about data) for our program source code. They provide additional information about the program to the compiler but are not part of the program itself. These annotations do not affect the execution of the compiled program.
Posted August 24, 2022 by Anusha ‐ 4 min read
Streams And Files
The java.io package contains nearly every class you might ever need to perform input and output (I/O) in Java. All these streams represent an input source and an output destination. The stream in the java.io package supports many data such as primitives, object, localized characters, etc.
Posted August 24, 2022 by Anusha ‐ 5 min read
Networking In Java
Networking supplements a lot of power to simple programs. With networks, a single program can regain information stored in millions of computers positioned anywhere in the world. Java is the leading programming language composed from scratch with networking in mind. Java Networking is a notion of combining two or more computing devices together to share resources.
Posted August 24, 2022 by Anusha ‐ 8 min read
Threads In Java
Typically, we can define threads as a subprocess with lightweight with the smallest unit of processes and also has separate paths of execution. These threads use shared memory but they act independently hence if there is an exception in threads that do not affect the working of other threads despite them sharing the same memory.
Posted August 24, 2022 by Anusha ‐ 4 min read
Threads Deep Dive
Posted August 31, 2022 by Anusha ‐ 4 min read