The method-dispatch tag has no wiki summary.
0
votes
2answers
47 views
Find to which method WCF will dispatch a RESTful request
Suppose I implement a WCF REST service with the following contract.
[ServiceContract]
interface INotesService
{
[OperationContract]
[WebInvoke(Method = "GET",
UriTemplate = ...
3
votes
3answers
220 views
Useless overriding: Just nonsense / code smell, or more evil?
We just found the following lines of Java code,
@Override
public String toString() {
return super.toString();
}
and started pondering. Is it just boring senseless code smell, or does it even ...
11
votes
2answers
2k views
When do i use @classmethod and when def method(self)?
While integrating a django app i have not used before, i found two different ways used to define functions in classes. The author seems to use them both very intentionally. The first one is one i ...
6
votes
4answers
3k views
Overloading is compile-time polymorphism. Really?
I do know the syntactical difference between overriding and overloading. And I also know that overriding is run-time polymorphism and overloading is compile-time polymorphism. But my question is: "Is ...
45
votes
4answers
22k 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
6k views
Itemclick event in datagrid
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 ...
1
vote
4answers
1k 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 ...
2
votes
3answers
1k 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) {
...
10
votes
4answers
4k 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
2k 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 ...