|
#1
|
|||
|
|||
|
syntax error
also plz tell if there is nething wrong in this piece of code-
Code:
public static final Integer multiply(Integer x, Integer y) {
return (y == 0) ? 0 : multiply(x, y - 1) + x;
}
|
|
#2
|
|||
|
|||
|
that just means that the Integer you are returning cannot be subclassed . Doesn't mean that there is only one answer returned by the method.
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| JBOSS JTA for 2 phase commit in Distributed transactions | Amt_asc | Database | 0 | 04-03-2009 04:13 AM |
| syntax error from function in include file | larryy@indiana. | ASP.NET | 1 | 03-20-2009 02:29 PM |
| SQL Statement | shers | Database | 4 | 06-17-2006 05:01 AM |
| I can't link FreeImage to C# | mesh2005 | .NET | 1 | 03-06-2006 09:16 AM |
| Syntax Error Updating SQL Server Table | Ralf | Database | 26 | 08-08-2002 09:58 AM |