Comment on Tutorial - Method Overriding in Java By Henry
Comment Added by : Naveen Kumar
Comment Added at : 2011-04-30 18:44:22
Comment on Tutorial : Method Overriding in Java By Henry
/*Overridding & equals:--> Overriding is another useful feature of object-oriented programming technique. It provide the facility to redefine the inherit method of the super class by a subclass. The method overriding is used to invoking the parent class method by a child class. It is possible when a child class extends the parent class then all the attributes and the methods of parent class inherit by child class.*/
class Test10
{
int num,num1;
public Test10(int num,int num1)
{
this.num=num;
this.num1=num1;
}
public boolean equals(object 0)
{
Test10 t=(Test10)0;
if((t.num==this.num)&&(t.num1==this.num1))
{
return true;
}
return false;
}
public static void main(String[]args)
{
Test10 t1=new Test10(10,21);
Test10 t2=new Test10(10,30);
System.out.println(t1.equals(t2));
}
}
View Tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Java program to get location meta data from an image
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program
Archived Comments
1. awesome. thanks for the info
View Tutorial By: Darren at 2010-05-09 19:55:22
2. can i ask a program that will compute a order from
View Tutorial By: mjae at 2011-09-12 08:02:46
3. Thanks it did help to get complete clarity
View Tutorial By: Vivek The Great at 2012-05-07 17:31:32
4. Can anybody tell.... what if condition is doing in
View Tutorial By: Randhir Sambyal at 2013-08-26 06:37:25
5. Thanks, you save my day!
View Tutorial By: ivex at 2015-06-25 20:20:07
6. well written hog .good going
View Tutorial By: Rajesh at 2010-08-17 03:38:05
7. Very clear and instructive. Better than other expl
View Tutorial By: cembircan at 2015-06-10 15:45:01
8. Excellent !...That explains my long-term question
View Tutorial By: Vineeth at 2012-02-01 03:50:21
9. How to download any file when a button is in .jsp
View Tutorial By: Gopesh at 2012-04-13 09:35:11
10. plz send inheritance concept,how to use final,thi
View Tutorial By: sobha at 2010-02-14 08:29:33