Monday 22 December 2014

Difference between String Literal and String Object in Java


This is most confusing topic in java and its not given clearly in many websites what is the exactly difference between String Literal and String Object.And its a very basic question asked in interviews.
So here is my explanation on this:-

String are nothing but a sequence of characters for ex:"Hello".In java programming language string are objects.

The JVM maintains a special part of memory called "String Literal pool" or "String constant pool" where all string gets stored.This is done to avoid unnecessary creation of same object again and again which helps in saving memory as well as time.

When you declare a String as

String strName1="Kavita";

Here JVM first checks whether a String named "Kavita" already present in String pool.If yes,variable 'strName' refers to the object "Kavita". If no,then it creates an object "Kavita" in String pool and variable 'strName' points to this object.
This declaration creates ONE object.

Similarly, when you create another object as

String strName2="Kavita";

In this case , JVM checks the string "Kavita" in String pool.As "Kavita" object is already present in String pool. JVM returns the reference of "Kavita" object to variable 'strName2'.So NO objects gets created.

And both variable 'strName1' and 'strName2' points to the same object "Kavita" present in string pool.This way JVM save the memory and time in creation of string objects.If you call '==' operator on both the variable,then it will return TRUE.

String objects gets stored in heap area of memory.String pool is located in premgen area of heap in Java version 1.6 or before but in Java 1.7 , it is moved to heap area of memory.

When you declare String using new operator as,

String strName3=new String("Rob");

Here ,'new String("Rob")' will always a create an object in heap and another object "Rob" will be created which gets stored in String pool.The reference of new String("Rob") will be returned to variable strName3. So in this case,Two objects gets created.


Happy Learning. :)

Sunday 21 December 2014

Important Eclipse Keyboard Shortcuts For Java Programmer


Here I am listing some basic and important eclipse keyboard shortcuts that every programmer should use while developing any application

The benefit of using shortcuts is it helps you to develop your application faster.

The list of shortcuts are as follows:

Ctrl+N                                                
Create New Project
Ctrl+Shift+R                                      
Open Resource (Java files,other files,folder,projects)
Ctrl+W                                                
Close Current Opened File.
Ctrl+Shift+W                                      
Close All Files
F5                                                        
Refresh


Ctrl+C                                                
Copy Some text or line.
Ctrl+V                                                
Paste text or line.
Ctrl+X                                                
Cut text or line
Ctrl+Z                                                
Undo Last Action
Ctrl+Y                                                
Redo Last Action
Ctrl+F                                                  
Open find and replace dialog to find any word or strings of words.
Ctrl+H                                                
Search Entire Workspace for file,words etc
Ctrl+Shift+O                                      
Organize all imports and remove unnecessary imports
Ctrl+A                                                
Select all text in class
Ctrl+I
Correct indention of selected text or of current line or whole class
Ctrl+Shift+F
Format all code in class
Ctrl+/
Comment / un-comment line
Ctrl+Shift+/
Add Block Comment around selection
Ctrl+Shift+\
Remove Block Comment
Ctrl+S                                                  
Save Current File.
Ctrl+Shift+S                                        
Save All Files. 



Important Debug shortcuts :

F11
Debug                                                                       
F5
Step Inside the function
F6
Next step(line by line)
F7
Step out of the function
F8
Skip to next breakpoint