Tagged Questions

13
votes
3answers
759 views

Which overload will get selected for null in Java?

If I write this line in Java: JOptionPane.showInputDialog(null, "Write something"); Which method will be called? showInputDialog(Component parent, Object message) showInputDialog(Object message, ...
4
votes
1answer
222 views

Options for invoking methods dynamically in C#

I've seen quite a few questions related to how do I invoke a method like this and that. What I haven't found is a listing of the different options of how to invoke a method via reflection or any other ...
3
votes
2answers
62 views

Cost of nested method invocation in Java

My assumption is that, with compiler optimization (e.g., inlining), it makes practically no difference whether a method is "nested" a few levels. Would that be the case indeed? For example, say that ...
2
votes
11answers
209 views

how does the following code work

Currently I'm trying to invoke it like this: class Test { public static void test() { System.out.println("hi"); } public static void main(String[] args) { Test t = null; ...
1
vote
1answer
105 views

How is this a valid Java method invocation?

I've just been reading Marko Rodriguez's excellent blog post about different types of databases. Whilst reading I noticed some syntax... // put data db.put('marko'); db.put(31); db.put(true); // get ...
0
votes
0answers
35 views

An incorrect number of type args were specified for the declaration of a Func type

I am working on a Dynamic Proxy generation utility. It will take a Service (WSDL) URL, method name and parameter collection. I am able to create the proxy, but when I try to invoke the method on the ...
0
votes
3answers
54 views

How can I extract the java method invocation?

Suppose in my project written in Java I have some classes and each of these classes has some methods. I want to know which methods never invoked in my project. I implemented a simple program by using ...
0
votes
1answer
166 views

iOS: What is the processing overhead in invoking an Objective-C method?

I am writing some real-time audio processing code, which is to be executed in an audio unit's render callback. This thread is at the highest priority level the system recognises. Apple instructs to ...
0
votes
2answers
125 views

Weird problem with dynamic method invocation

this time, I'm facing a really weird problem. I've the following code: $xml = simplexml_load_file($this->interception_file); foreach($xml->children() as $class) { $path = ...