What are the benefits of uwing * ? Example:

QTextBox * myTextBox = new QTextBox("hello");

in stead of:

QtextBox myTextBox("hello");

Which one is better, why ?