| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
3 comments so far (post your own) View All Comments Latest 10 Comments:what problem we would have faced,if string class object had not been immutable.
Posted by sandeep on Wednesday, 01.2.08 @ 21:51pm | #44381
what is synchronized?
Posted by chandran on Tuesday, 02.20.07 @ 16:12pm | #8485
Question: What restrictions are placed on method overloading?
Answer: Two methods may not have the same name and argument list but different return types.
I think the answer is not correct. The answer should be
"Just by changing the return type alone a method cannot be overloaded. The number and type of argguments should also differ. For example,
public int add(int a, int b){
}
public void add(int a,int b){
}
is not overloading. The system will show error.
where as,
public int add(int a, int b){
}
public double add(double a,double b){
}
is overloading.
Posted by C.Srinivasan on Tuesday, 02.13.07 @ 14:19pm | #7733