Consider classes as given below. What does o.m(3) return, assuming o has static type A and dynamic typ class A { A m(int i) { return null; } int m() { return 1; } } class B { B m(int i) { return this; } int m (A a) { return 1; } } method invocation will cause compile time error null 1 the object o O

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 23SA
icon
Related questions
Question
Consider classes as given below. What does o.m(3) return, assuming o has static type A and dynamic type B?
class A {
A m(int i) { return null; }
int m() { return 1; }
}
class B {
B m(int i) { return this; }
int m(A a) { return 1; }
}
method invocation will cause compile time error
null
the object o
O 1
Transcribed Image Text:Consider classes as given below. What does o.m(3) return, assuming o has static type A and dynamic type B? class A { A m(int i) { return null; } int m() { return 1; } } class B { B m(int i) { return this; } int m(A a) { return 1; } } method invocation will cause compile time error null the object o O 1
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning