Here is the code(psedo code),
My question is that within catch clause, should I call return false at the end? Thanks.Code:bool foo() { try{ if thing one is not done return false; if thing two is not done return false; } catch(...) { do something... } return true; }


Reply With Quote
Bookmarks