Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How to define an Abstract class?
How to define an Abstract class?
✍: Guest
A class containing abstract method is called Abstract class. An Abstract class can't be instantiated.
Example of Abstract class:
abstract class testAbstractClass {
protected String myString;
public String getMyString() {
return myString;
}
public abstract string anyAbstractFunction();
}
2012-05-24, 2761👍, 0💬
Popular Posts:
What is Shell scripting A shell script is a script written for the shell, or command line interprete...
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the ...
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
What are the different accessibility levels defined in .NET ? Following are the five levels of acces...
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itsel...