Senin, 06 Mei 2013 best practices coding core java programming Java Mistake 3 - Using "==" instead of equals() to compare Objects in Java In this part of Java programming mistakes, we will take a look on another common pattern, where programmers tend to use "==" oper...
Senin, 25 Maret 2013 best practices core java error and exception programming 10 Exception handling Best Practices in Java Programming Exception handling is an important part of writing robust Java application. It’s a non functional requirement for any application, to gracef...
Senin, 04 Maret 2013 best practices coding core java core java interview question How to create Immutable Class and Object in Java - Tutorial Example Writing or creating immutable classes in Java is becoming popular day by day, because of concurrency and multithreading advantage provided b...
Senin, 07 Januari 2013 best practices coding core java programming Java Best Practices to Follow while Overloading Method and Constructor Method overloading in Java needs to be use carefully. Poorly overloaded method add not only add confusions among developers who use that but...
Selasa, 04 Desember 2012 best practices core java programming Why getter and setter are better than public fields in Java public modifier vs getter and setter method in Java Providing getter and setter method for accessing any field of class in Java may look unn...
Sabtu, 03 November 2012 best practices coding core java core java interview question programming Why use @Override annotation in Java - Coding Best Practice @Override annotation was added in JDK 1.5 and it is used to instruct compiler that method annotated with @Override is an overridden metho...
Selasa, 28 Agustus 2012 best practices core java JDBC Top 10 JDBC Best Practices for Java Programmer Java JDBC Best practices JDBC Best Practices are some coding practices which Java programmer should follow while writing JDBC code. As discu...