why java does compile time polymorphism at run time ?
Answer Posted / ali
in java all the non-static functions or instance functions are implicit virtual i.e an object is bound with their functionality at run time
so therefore in java their is no compile time polymorphism
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Does java runtime require a license?
You can create a string object as string str = “abc”; why cant a button object be created as button bt = “abc”;? Explain
What do you mean by multithreaded program?
Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?
What is the difference between instanceof and isinstance?
Is array passed by reference in java?
What is default locale java?
What is the formula to calculate percentage?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. How can I do so?
Explain about main() method in java ?
What causes memory leak in java?
Does substring create a new object?
Why unicode is important?
Explain the features of java?
What is the purpose of using break in each case of switch statement?