Object + shortcut ➜ Object object = new Object();
Whether there is such shortcut?
As of 2017, improving on @aleksander's answer, I believe the best way to create a new object as efficiently as possible in Intellij IDEA, is this (click to enlarge):
Settings > Live Template. + to the right of the window, to add a new Live Template. n or newo). Description could be new Object .$Clazz$ $obj$ = new $Clazz$($END$);Edit Variables button, and the fill in the Clazz and obj Expression and Default Value as shown in the picture above.Define next to No applicable contexts, to define Java > Statement as the context.Now test it: Go to the editor, type n and then the TAB key.