Objects in C++ can be created using the methods listed below(that I am aware of):
Person p;
or
Person p("foobar");
or
Person * p = new Person();
Then, why does not the Samsung Bada IDE allow me to do the first two methods? Why do I always have to use pointers? I am ok with using pointers and all, just that I want to know the fundamental reason behind the style.
Sample code from Bada API reference.
// Create a Label
Label *pLabel = new Label();
pLabel->Construct(Rectangle(50, 200, 150, 40), L"Text");
pLabel->SetBackgroundColor(Color::COLOR_BLUE);
AddControl(*pLabel);
I modified and tried using the code below. Although it compiles and the app runs, the label does not show up on the form.
// Create a Label
Label pLabel();
pLabel.Construct(Rectangle(50, 200, 150, 40), L"Text");
pLabel.SetBackgroundColor(Color::COLOR_BLUE);
AddControl(pLabel);
Note : Rectangle class which is used creates an object on the fly without pointer. How is it different from Label then? Its confusing :-/
Person *p = new Person()is really bad code (in general). In this situationpshould be some sort of smart pointer that can take ownership of the newly allocatedPerson. – Mankarse Sep 20 '11 at 8:17deleteing the allocated memory. – Griwes Sep 20 '11 at 9:10newin constructor) followed by a Construct call. The reason for this is that bada (and Symbian) is designed for resource limited devices and adding exception handling was considered too much of an overhead. The IDE may provide assistance with this but I don't know why it's causing the OPs problems - perhaps looking at the constructor might help? – Skizz Sep 20 '11 at 9:29