Cchaitanyainchaitu.hashnode.dev·Jul 18, 2025 · 1 min readCode crimesIn my experience as a software engineer for some years, I have seen a few things that wastes lot of developer time and creates unhappiness to the programmer. If only these things are not done, would it save a lot of time and make debugging friction f...00
Cchaitanyainchaitu.hashnode.dev·Aug 23, 2024 · 4 min readDealing 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...00
Cchaitanyainchaitu.hashnode.dev·Mar 8, 2024 · 3 min readGenerics in JavaLook at code example below class Pair { double x; double y; public void setx(double x){ this.x = x; } public void sety(double y){ this.y = y; } } public class Main { public static void main(String[] args...00