1 Answer - Sort by: Date | Rating
You are creating an Object named 'Ob'
'B' reference, but a 'A' Object
It's used in Polymorphism.
consider a classic example...
Animal a = new Animal(); // generic Animal Eating Generically
a.eat();
Horse h = new Horse(); // Horse eating Hay
h.eat();
Animal ah = new Horse(); // Horse eating Hay. Polymorphism works! The actual object type (Horse),
ah.eat(); //not the reference type(Animal), is used to determine which eat() is called.
well you need to understand the concepts of Polymorphism, methos overloading and method overriding. I suggest you take a good book and read the topic.
use SCJP book by Kathy Sierra and Bert Bates. Its an excellent book for Fundamentals
msg me if in doubt.
Hope it helps...
'B' reference, but a 'A' Object
It's used in Polymorphism.
consider a classic example...
Animal a = new Animal(); // generic Animal Eating Generically
a.eat();
Horse h = new Horse(); // Horse eating Hay
h.eat();
Animal ah = new Horse(); // Horse eating Hay. Polymorphism works! The actual object type (Horse),
ah.eat(); //not the reference type(Animal), is used to determine which eat() is called.
well you need to understand the concepts of Polymorphism, methos overloading and method overriding. I suggest you take a good book and read the topic.
use SCJP book by Kathy Sierra and Bert Bates. Its an excellent book for Fundamentals
msg me if in doubt.
Hope it helps...
1
0
- What Does Literati-on Mean?
- What Is Abstract Class In Details?
- What Is Meant By Remote Method Invocation In Java?
- What Is Meant By Package In Java?
- What Is Meant By Servlet In Java?
- When Was Java Released?
- What Is Latest Technologies In Java?
- Write A Program Using Do…..while Loop To Calculate And Print The First M Fibonacci Numbers?
- What Is The Difference Between Reference &instance Variable?
- Why Java Is Slow?
- What Is The Drawback Of Ms Access?
- What Is Replaced In Place Of Pointers In Java?
- What Replaces Pointers In Java?
- How Many Types We Create Object In Java?
- I Signed Up Promo Code 505124 For 12 Months My Bill Said For 6 Months Who Fix This Error?
- What Is The Expansion Of Java?
- How To Do An Atm Java Program?
- How To Create A Diamond Using Asterisks In Java?
- How Do You Use Abstraction In A Sentence?
- Why Do I Need Java?
- Why Does Java Provide The Ability To Call From A Java Program Native Methods That Are Written In, Say, C Or C++? Provide An Example Of A Situation In Which A Native Method Is Useful.
- What Is A Role Of Object In Java?
- Where Do I Go To See If Java Is Installed?
- How I Idownload Java On My Phone?
- Update Kb953297 Will Not Install. How Do I Fix This?
- Does Lest Have The Same Meaning As Unless?
- What Is The Meaning Of The Last Name May?
- What Is The Meaning Of 2,6,5,4,3?
- What Is The Meaning Of This?
- What Is The Meaning Of?...
- Can You Tell Me The Meaning Of This?
- What Is The Meaning Of Behind?
- What Is The Meaning Of Please?
- What Is Meaning Of ' So Far"?
- What Is The Meaning Of: 3 = M In A T?

New Comment - Comments are editable for 5 min.