what is abstract class ?
when is used in real time ?
give a exp
Answer Posted / ramakrishna yechuri
An Abstract class ia class which consists at least one
abstract method(in complete method).
Advantage is the user can implement the method body as per
his require ment.
ex: connect(){} ,I implement to conncect to oracle
database,u implement to conncet to sybase,my friend
implement this method to connect to oracle db. same connect
method acting in different forms (polymorphisim).
Note: Always Interfaces is better than Abstract class,becoz
Programming to Interface is better than programming to
classes.
To avoid dependency Injection problems.(spring).
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
Is react oop?
which feature are not hold visual basic of oop?
Which is not an object oriented programming language?
Can main method override?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is object in oop with example?
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
What is encapsulation process?
Get me an image implementation program.
Advantage and disadvantage of routing in telecom sector
How oops is better than procedural?
What is ambiguity in inheritance?
What are the 3 principles of oop?
how to get the oracle certification? send me the answer
Can private class be inherited?