Comment on Tutorial - Method Overriding in Java By Henry
Comment Added by : Naveen Kumar
Comment Added at : 2011-04-30 18:44:55
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
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
MultiLevel Inheritance sample in Java
Archived Comments
1. Hi, these are the lines i added after i downloaded
View Tutorial By: sandeep,p at 2012-11-22 10:17:07
2. nice one !!! just keep it .. i have learn a lot..
View Tutorial By: dondon at 2011-07-27 04:43:40
3. Good Information... Plz give some more examples wi
View Tutorial By: Uetian at 2010-04-01 04:26:55
4. The above code works for me. When I run the progra
View Tutorial By: Avinash at 2011-12-01 10:20:19
5. Hi Along with your provided code below, if we are
View Tutorial By: Roshan at 2011-05-02 12:06:27
6. Hi puru, The syntax is substring(int startIndex, i
View Tutorial By: Fazal at 2008-09-12 20:17:53
7. Friends i m getting error while intrepreting the e
View Tutorial By: Hanuman at 2014-02-04 14:14:00
8. thanks
View Tutorial By: nitin at 2010-03-29 01:02:57
9. HOW DO I FIND MY COMM PORT NAME SO THAT I CAN SPEC
View Tutorial By: RUTUJA at 2013-10-01 18:27:59
10. thanks i understood
View Tutorial By: raksha at 2012-11-04 16:44:19