Tagged articles

java basics

3 articles · Page 1 of 1
Lisa Notes
Lisa Notes
Jun 22, 2026 · Fundamentals

How to Use Java’s super Keyword to Call a Superclass Constructor

This tutorial explains how the super keyword invokes a superclass constructor—both no‑argument and parameterized—illustrates constructor chaining across inheritance hierarchies with concrete Java code examples, and highlights compilation errors when a matching superclass constructor is missing.

JavaOOPconstructor
0 likes · 9 min read
How to Use Java’s super Keyword to Call a Superclass Constructor
Architect's Guide
Architect's Guide
Sep 9, 2022 · Fundamentals

A Comprehensive Overview of Java Bitwise Operators

This article provides a detailed introduction to Java's seven bitwise operators, explains their binary logic, demonstrates shift operations, and showcases common practical uses such as power-of-two multiplication and parity checks with clear code examples and visual illustrations.

JavaProgramming Fundamentalsbit manipulation
0 likes · 9 min read
A Comprehensive Overview of Java Bitwise Operators
Architect's Tech Stack
Architect's Tech Stack
Oct 10, 2018 · Backend Development

Understanding Java Object Serialization and the transient Keyword

Java object serialization converts objects into byte streams for storage or transmission, while the transient keyword excludes specific fields from this process; this article explains serialization concepts, appropriate use cases for transient, provides code examples, and shows the impact on object state after deserialization.

JavaSerializationjava basics
0 likes · 6 min read
Understanding Java Object Serialization and the transient Keyword