[Fb-contrib-commit] SF.net SVN: fb-contrib: [644] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-09-11 05:18:02
|
Revision: 644 http://svn.sourceforge.net/fb-contrib/?rev=644&view=rev Author: dbrosius Date: 2006-09-10 22:17:55 -0700 (Sun, 10 Sep 2006) Log Message: ----------- doc Tailrecursion Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2006-09-11 05:10:23 UTC (rev 643) +++ trunk/fb-contrib/htdocs/index.html 2006-09-11 05:17:55 UTC (rev 644) @@ -64,6 +64,10 @@ Looks for methods that pass single character string constants as parameters to methods that alternatively have an overridden method that accepts a character instead. It is easier for the method to handle a single character than a String.</li> + <li><b>[TR] Tail Recursion</b><br/> + Looks for methods that make a recursive call to itself as the last statement in + the method. This tail recursion could be converted into a simple loop which would + improve the performance and stack requirements.</li> <li><b>[URV] Unrelated Return Values</b><br/> Looks for methods that return Object, and who's code body returns two or more different types of objects that are unrelated (other than by Object).</li> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |