samsung bada development without using pointers
问题 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