chaitanyachaitu.hashnode.dev·Aug 23, 2024Dealing with Null Reference ExceptionsIf you are a software Engineer, you might have come accross this error "Object reference not set to an instance of an object". Then you might have asked what does this even mean? let's understand what this error means. For suppose check this below ps...46 readsObject refernece not set to an instance of an object
Merge Simpsonblog.letsdev.me·May 23, 2024Java: Null 안정성에 좋은 Optional 클래스, 이제 이렇게 써야 깔끔합니다.Optional은 무엇인가요? Optional 때문에 코드가 난잡하게 된다면 어떻게 해야 할까요? 글의 발단 무분별한 옵셔널 사용으로 코드가 깔끔하지 않다고 느낄 때가 있다는 사연을 예전에 들은 적이 있습니다. 그래서 저는 어떤 이유로 어떻게 관리하고 있는지 설명을 했고, 이를 결국 글로도 남기기로 결정했습니다. Java Optional이란? 자바의 NULL 안정성을 위한 표준 API 클래스입니다. null일 수도 있는 값을 감싸서(박싱 해...40 readsJava
Firas Hassanfiras-hassan.hashnode.dev·Mar 11, 2023Guide to NullPointerException in Java And How to Avoid itNullPointerException (or NPE for short) is one of those dreaded exceptions that every Java developer has to face in their career. We'll discuss the exception, why and when it exists and how to avoid it in detail later, but first, let's understand the...32 readsJava