0
why it's "return (result)"?
why it's "return (result)", not "return result"? the class before used "return result", not "return (result)". is there any different between these two forms?
2 Antworten
+ 2
You can use whichever you want... the one which you understand easier.
+ 1
return (result);
and
return result;
are the same