Show* Show::create() { Show* pRet = new Show(); if (pRet) { pRet->autorelease(); } return pRet; }
Show* Show::create() { Show* ret = new (std::nothrow) Show(); if (ret) { ret->autorelease(); } return ret; }
Show* Show::create() { Show* ret = new Show(); if (ret) { ret->autorelease(); } return ret; }