Architecture
Refactoring
Agile
Delivery
Microservices
Data
Testing
DSL
About
Books
FAQ
Videos
Content Index
Board Games
Photography
Insights
Careers
Radar
RSS
Mastodon
LinkedIn
X (Twitter)
BGG
Martin Fowler
9 Oct 1999
page 308
A method returns an object that needs to be downcasted by its callers.
Move the downcast to within the method.
Object lastReading() { return readings.lastElement(); }
image/svg+xml
Reading lastReading() { return (Reading) readings.lastElement(); }