Tagged articles
6 articles
Page 1 of 1
Lisa Notes
Lisa Notes
Apr 26, 2026 · Fundamentals

Master Java Object Type Conversion: Upcasting and Downcasting Basics

This article explains Java object type conversion, covering upcasting (implicit parent‑to‑child casting) and downcasting (explicit child‑to‑parent casting), their safety rules, static method behavior, and how to use the instanceof operator to avoid runtime errors.

DowncastingInstanceofJava
0 likes · 5 min read
Master Java Object Type Conversion: Upcasting and Downcasting Basics
FunTester
FunTester
Feb 10, 2025 · Backend Development

Byteman Rule Binding, Downcasting, Expressions, Conditions, and Actions

This article explains Byteman's rule binding syntax, including variable binding, downcasting of bound variables, supported expression types, special variables, condition definitions, and action specifications, providing detailed examples and code snippets for effective Java instrumentation.

BytemanDowncastingjava-instrumentation
0 likes · 7 min read
Byteman Rule Binding, Downcasting, Expressions, Conditions, and Actions
Python Programming Learning Circle
Python Programming Learning Circle
Oct 29, 2020 · Fundamentals

Optimizing Pandas Memory Usage for Baseball Game Data

This article demonstrates how to reduce pandas DataFrame memory consumption by selecting appropriate column data types, downcasting numeric types, converting object columns to categorical, and specifying optimal dtypes during CSV import, using a 130‑year baseball dataset as a practical example.

DowncastingMemory Optimizationcategorical
0 likes · 12 min read
Optimizing Pandas Memory Usage for Baseball Game Data
Java Captain
Java Captain
Apr 21, 2018 · Fundamentals

Java Type Checking, Polymorphism, Upcasting and Downcasting

This article explains Java's strong typing, type declarations, basic primitive conversions (narrowing and widening), and demonstrates upcasting, downcasting, and polymorphism through concrete class examples such as Human, Cup, and BrokenCup, highlighting how the runtime resolves method calls.

DowncastingInheritanceJava
0 likes · 7 min read
Java Type Checking, Polymorphism, Upcasting and Downcasting