4
votes
3answers
241 views
Using -performSelector: vs. just calling the method
I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?
[object performSelector:@selector(doSomething)];
[object doSomething];
0
votes
1answer
577 views
Itemclick event in datagrid.
Hi,
The problem can be summarized as when clicking an item in datagrid, the text area shows the value of the item, but here the compoents are separate and hence events need to be dispatched.
My mxml …
0
votes
4answers
205 views
Ruby: How do I invoke a function via an object reference?
Consider this contrived example:
# Dispatch on value of fruit_kind:
TYPE_A = :apple
TYPE_B = :banana
TYPE_C = :cherry
eating_method = nil
case fruit_kind
# Methods to use for different kinds of …
1
vote
3answers
275 views
Java dynamic binding
I am practicing for an exam, and found a sample problem that gets me totally lost.
For the following code, find what the output is:
class Moe {
public void print(Moe p) {
…
2
votes
4answers
519 views
Java method dispatch with null argument
Why does it (apparently) make a difference whether I pass null as an argument directly, or pass an Object that I assigned the value null?
Object testVal = null;
test.foo(testVal); // dispatched to …
2
votes
2answers
464 views
Work around Java’s static method dispatching without Double Dispatch/Visitor patterns
I am using a class Foo that provides these methods:
String overloadedMethod(Object)
String overloadedMethod(Goo)
Since Java statically dispatches on the non-receiver argument, I cannot just pass my …
