Wednesday, 24 April 2013

Music – Something that makes us (HP Connected Indiblogger meet)



An Experience : Last Saturday (20 April) , I had attended the indiblogger meet at Hilton Garden Inn Gurgaun Baani Square. I am sharing the experience of that meet with all of you which was organized by HP. I am writing about music in my blog which is all about the java language just because I want to share the experience of my first indiblogger meet.…
Read more

Friday, 19 April 2013

The 'new' operator in java



The 'new' operator in java is responsible for the creation of new object or we can say instance of a class. Actually, it dynamically allocates memory in the heap with the reference we define pointed from the stack. The dynamically allocation is just means that the memory is allocated at the run time of the program. The advantage of this approach is…
Read more

Wednesday, 10 April 2013

ACCESS SPECIFIERS/MODIFIERS IN JAVA



ACCESS SPECIFIERS/MODIFIERS IN JAVA Access Specifier/Modifier in any language defines the boundary and scope for accessing the method, variable and class etc. Java has defined four types of access specifiers. These are : 1.    Public 2.    Private 3.    Protected 4.    Default If you do not define any access specifier/modifier than java will take “default” access specifier…
Read more