Comment on Tutorial - Abstract classes in Java By Kamini
Comment Added by : satish
Comment Added at : 2012-04-07 10:35:38
Comment on Tutorial : Abstract classes in Java By Kamini
abstract class A {
abstract void callme();
void callmetoo() {
System.out.println("This is a concrete method.");
}
}
class B extends A {
void callme() {
System.out.println("B's implementation of callme.");
}
}
class AbstractDemo {
public static void main(String args[]) {
B b = new B();
b.callme();
b.callmetoo();
}
}satish
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
Subscribe to Tutorials
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. If the compiler takes care of this pointer implici
View Tutorial By: Bhanu Noah at 2012-03-15 16:20:05
2. Thanks a lot for that excellent explanation. It ha
View Tutorial By: Gregory at 2014-12-30 05:49:21
3. where i can find jar files?
please tell me
View Tutorial By: chandu at 2012-06-17 14:14:28
4. MSComm1.Settings="9600,n,8,1"
View Tutorial By: ali at 2012-02-25 21:52:21
5. hi
very tnx for your code
View Tutorial By: Moji at 2012-08-19 16:06:53
6. can this code communicate with other pc that using
View Tutorial By: lolo at 2011-10-28 09:14:30
7. Many thanks for this tutorial - it has saved me so
View Tutorial By: Ehsan at 2011-11-20 23:12:21
8. Thanks alot! it works.I have also suffered alot du
View Tutorial By: jiya at 2008-11-24 10:00:50
9. This works perfect for me. The only big problem is
View Tutorial By: Eric at 2014-11-20 03:49:19
10. I am quite new to Struts and this article, quite c
View Tutorial By: Jenghiz at 2010-01-27 23:19:48