As we know that object-c has introduce a technology called ARC to free the developer from the burden of memory management.it sounds great, I think C++ developers would be very happy if g++ also has this feature.
"ARC allows you to put the burden of memory management on the (Apple LLVM 3.0) compiler, and never think about retain, release and autorelease ever again"
So,if LLVM3.0 can do that, I think g++ also can free C++ developers from the tough jobs of memory management,right?
Is there any difficulties to introduce ARC to C++ ?
sorry I didn't make myself clear,What I mean is : If we don't use smart pointer, we just use new/new[] . is it possible for compiler to do something for us to prevent memory leak ,for example :change the new to a smart pointer automatically?
Thanks

new/deletein C++. – Mehrdad Mar 16 '12 at 8:25newis fine,deleteis the evil guy :) – nightcracker Mar 16 '12 at 8:29newwithout adeleteis evil too :) – Alok Save Mar 16 '12 at 8:31deleteis done automatically :) – nightcracker Mar 16 '12 at 9:40