Watch the very first moments of Vasundhra.
Author: Arul Dhesiaseelan
Synthetic methods in Java
Synthetic methods are often referred to as bridge methods in Java generics world. These methods are created by the Java compiler as a result of type erasure when the signature of the inherited methods change when a type extends or implements parameterized classes or interfaces. The compiler generates synthetic methods in subtypes of parameterized supertypes … Continue reading Synthetic methods in Java
javac recognized options are hidden – javac exposed
I was reading a recent blog entry from A. Sundararajan which uncovers one of the hidden options used to be available only for debugging Java compiler. This option is an undocumented feature which explains the underpinnings behind some of the various language features introduced in JDK1.5. OpenJDK provides an opportunity to learn the intricacies of … Continue reading javac recognized options are hidden – javac exposed
Economist of the 21st century recaps his experience as a Fed Chairman
Today, I became the proud owner of Alan Greenspan's The Age of Turbulence: Adventures in a New World. One of my favorite economist writes about the global capitalist economy post 9/11 era. I will add more to this blog as I start reading this economy bible of the 21st century.
Hello world!
Welcome to my blog! This is my first official blogging on the net. I would like to start my blog by announcing the arrival of our little baby girl Vasundhra on Sep 4. It was awesome to hold her on my hands and welcoming her to this exciting world. Those were miraculous moments. She is … Continue reading Hello world!
Singletons exposed
A Google Code project on detecting singletons in Java code has released its code under Apache Software License. This tool is useful for detecting singletons based on their usage pattern and these patterns are classified as {S, H, M, F}+ingleton. The author introduces these new terminologies based on whether the Singleton is implemented in a … Continue reading Singletons exposed