Tagged Questions
31
votes
9answers
15k views
Java dynamic binding and method overriding
Yesterday I had a two-hour technical phone interview (which I passed, woohoo!), but I completely muffed up the following question regarding dynamic binding in Java. And it's doubly puzzling because I ...
6
votes
6answers
389 views
Question about Java overloading & dynamic binding
In the code below, how does first and second print statements print out SubObj??
Do top and sub point to the same Sub class?
class Top {
public String f(Object o) {return "Top";}
}
class Sub ...
5
votes
1answer
5k views
Dynamically binding lists with Spring's form tag
I have a command object FaxForm and it holds a list of FaxStatus objects inside a faxStatusList property.
public class FaxForm {
private List<FaxStatus> faxStatusList;
public void ...
3
votes
1answer
72 views
Can I call an overridden method from the super of the super?
Assume that I have these three classes:
class Foo {
void fn() {
System.out.println("fn in Foo");
}
}
class Mid extends Foo {
void fn() {
System.out.println("fn in Mid");
...
1
vote
3answers
75 views
In java, if a method NOT inherited by any subclass is called, whether dynamic binding or static binding is used?
In java, if a method NOT inherited by any subclass is called, whether dynamic binding or static binding is used?
I know it won't make any difference to the output in this particular case, but just ...
1
vote
3answers
110 views
Which methods are dynamically bound in Java?
What the question says, which methods are dynamically bound in Java?
Coming from C++, if I am not mistaken, most methods are statically bound with a few exceptions.
1
vote
3answers
210 views
How is dynamic binding implemented in Java?
I am aware that in C++, there is a virtual pointer in each instance pointing to a virtual table. But how is dynamic binding implemented in Java?
1
vote
1answer
858 views
How do I define dynamic and just-in-time bindings with Guice?
I am trying to use Guice for a test framework based on TestNG. This frameworks analyzes the test class for dependencies and provides them eliminating the need to build them in tests.
Guice is all ...
0
votes
1answer
244 views
Java best practice library creation for flexible class creation (Factory Pattern, abstraction, and interfaces)
Imagine I am a Java software developer for a car manufacturer. I have been tasked with creating a library that will be used by numerous in-house applications. For each type of car model manufactured, ...
0
votes
1answer
340 views
dynamic binding with generic type
i need to bind dynamic a parametic type (List) but i dont get it right...
here is an overview of my classes:
public abstract interface SettingsField<A> extends Window
then i have some classes ...
0
votes
1answer
407 views
What is the difference between c++ dynamic binding and java dynamic binding?
What is the difference between c++ dynamic binding and java dynamic binding?