Gireesh Kapilagireeshkapila.hashnode.dev·Dec 18, 2023Null Object PatternAre you returning null from your methods? Are you branching your code with "if not null"? Do you often see null reference exceptions in your production logs? Read on to understand how you can design to completely avoid null in your codebase. Sir To...null object design pattern
Chetan Dattachetan77.hashnode.dev·Oct 8, 2023Null Object PatternThe null object pattern replaces null values within a specific object with a custom null object that is of the same class. The null object's fields will have default values, preventing it from causing a null pointer exception. Example f we don't use ...Low Level Designsoftware development