Skip to content
CoderSathi
  • Tutorial
    • Java Tutorial
    • Swing Tutorial
    • JDBC Tutorial
    • Java String Tutorial
    • Servlet and JSP Tutorial
  • Mongo DB
  • AWS
  • DevOps
  • Linux
  • Git

language-fundamentals

Exception Handling in Java

February 12, 2025March 1, 2022 by Yuba Raj Kalathoki

Exception handling in Java is a critical mechanism that allows developers to manage runtime errors gracefully, ensuring robust and fault-tolerant …

Read More Exception Handling in Java

Constructor in Java

March 30, 2025February 13, 2022 by Yuba Raj Kalathoki

Constructor in Java is the backbone of object creation. It initialize new objects, set default values, and ensure your code runs …

Read More Constructor in Java

this keyword in Java

March 31, 2025February 11, 2022 by Yuba Raj Kalathoki

The this keyword in Java is a reference to the current object inside a class. It helps eliminate ambiguity, improves code readability, …

Read More this keyword in Java

Encapsulation in Java

March 31, 2025February 9, 2022 by Yuba Raj Kalathoki

Encapsulation in Java is the cornerstone of Java object-oriented programming (OOP) that binds data and methods into a single unit (a …

Read More Encapsulation in Java

Abstraction in Java

March 30, 2025February 7, 2022 by Yuba Raj Kalathoki

Abstraction in Java is a core pillar of object-oriented programming (OOP) that hides implementation details and exposes only essential features. Imagine …

Read More Abstraction in Java

How to Create Instance of a Class in Java: A Step-by-Step Guide for Developers

March 30, 2025February 5, 2022 by Yuba Raj Kalathoki

Creating an instance of a class in Java (an object) is a fundamental skill for every developer. Whether you’re building a …

Read More How to Create Instance of a Class in Java: A Step-by-Step Guide for Developers

Switch Statement with Strings in Java

February 4, 2025February 4, 2022 by Yuba Raj Kalathoki

Java’s switch statement is a powerful tool for simplifying complex conditional logic. While it traditionally worked with primitives (like int, char) and enums, Java 7 introduced …

Read More Switch Statement with Strings in Java

== vs .equals() in Java: What’s the Difference?

February 4, 2025February 4, 2022 by Yuba Raj Kalathoki

Java developers often mix up the operator == vs .equals() in Java, leading to unexpected bugs. While both are used for comparison, …

Read More == vs .equals() in Java: What’s the Difference?

What is Autoboxing and Unboxing in Java?

February 4, 2025February 4, 2022 by Yuba Raj Kalathoki

Java is renowned for its simplicity and versatility, but certain features like autoboxing and unboxing can be confusing for newcomers. These concepts …

Read More What is Autoboxing and Unboxing in Java?

Java StringBuffer: Thread-Safe String Manipulation Explained

February 3, 2025February 3, 2022 by Yuba Raj Kalathoki

What Is StringBuffer in Java? StringBuffer is a thread-safe, mutable sequence of characters in Java, designed for scenarios where multiple threads …

Read More Java StringBuffer: Thread-Safe String Manipulation Explained

Older posts
Newer posts
← Previous Page1 … Page4 Page5 Page6 … Page11 Next →
+ Load More Post

Recent Posts

  • How to Fix “Public Key Retrieval is not allowed” MySQL JDBC Error
  • Complete Guide to JaCoCo: How to Measure Java Code Coverage Accurately
  • How to Create a Google App Password: Full Step-by-Step Guide
  • How to Fix “Files Showing as Modified” in IntelliJ IDEA on macOS
  • How to Fix NoClassDefFoundError: javax/xml/bind/DatatypeConverter in Java (Java 11+)
  • How to Connect Java Application to a Remote Database Using an SSH Tunnel (with Spring Boot Examples)
  • How to Convert JSON Array to Java List (With Examples)
  • Configure CORS in Spring Cloud Gateway (WebFlux & WebMVC)
  • Java String Tutorial
  • Java String Best Practices and Common Pitfalls
  • Privacy Policy
  • About CoderSathi.com
  • Contact
Copyright © 2026
Next Page »
  • Tutorial
    • Java Tutorial
    • Swing Tutorial
    • JDBC Tutorial
    • Java String Tutorial
    • Servlet and JSP Tutorial
  • Mongo DB
  • AWS
  • DevOps
  • Linux
  • Git