Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
762 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, ...
12
votes
9answers
394 views

Looking for a convenient way to call Java from C++

It seems most documentation or helper libraries relating to JNI (Java Native Interface) are concerned with calling native code from Java. This seems to be the main use of it, even though it is capable ...
6
votes
4answers
1k views

call method at runtime

I am wondering if it is possible to load a .net DLL at runtime, view the methods available and execute one at runtime. If this is possible could you point me in the right direction
5
votes
5answers
290 views

Overloaded methods priority

I have a base-class called Element. Some other classes (like Label and Image) both extend this class. I now have a dispatching class having the following methods: public class Dispatcher { ...
4
votes
1answer
92 views

How do I invoke this function with JavaScript?

I am just working with basic level of javascripts. Today I found the below and for scrolling down DIV layer when new data adds to DIV. I couldn't understand how to Call the function. Is it to be used ...
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 ...
4
votes
6answers
1k views

The best way to invoke methods in Python class declarations?

Say I am declaring a class C and a few of the declarations are very similar. I'd like to use a function f to reduce code repetition for these declarations. It's possible to just declare and use f as ...
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 ...
3
votes
2answers
220 views

How do I find out if a particular delegate has already been assigned to an event?

I have a command button on a winform. So, if I have something like: myButton.Click += MyHandler1; myButton.Click += MyHandler2; myButton.Click += MyHandler3; How can I tell if any particular ...
3
votes
1answer
189 views

Why this kind of function invocation is wrong in JavaScript?

I'd like to create an anonymous function and then invoke it immediately. 1) This will bring a syntax error. Why? function () { alert("hello"); }(); 2) wrap the function definition with () and ...
2
votes
3answers
52 views

What environment variables affect the 'java' binary?

Most unix commands whose operation changes based on values of environment variables have a section "ENVIRONMENT VARIABLES" in their man page. No such luck for the java binary (Sun/Oracle Java 6), ...
2
votes
1answer
138 views

Calling a Scheme function using its name from a list

Is it possible to call a Scheme function using only the function name that is available say as a string in a list? Example (define (somefunc x y) (+ (* 2 (expt x 2)) (* 3 y) 1)) (define ...
2
votes
1answer
590 views

JNI cached jclass global reference variables being garbage collected?

I'm working in the JNI Invocation API, calling into Java from C. I have some upfront initialization to cache 30+ Java classes into global references. The results of FindClass are passed into ...
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; ...
2
votes
6answers
739 views

Simple JavaScript function with immediate invocation does not work… why?

Can anybody explain why this works: var sayHello = function (name) { alert("Hello there " + name + "!"); }("Mike"); While this does not: function sayHello (name) { alert("Hello there " + ...
2
votes
4answers
4k views

How to do dynamic object creation and method invocation in .NET 3.5

How does the code looks that would create an object of class: string myClass = "MyClass"; Of the above type, and then call string myMethod = "MyMethod"; On that object?
1
vote
2answers
32 views

Uncaught TypeError: Illegal invocation in javascript

I'm creating a lambda function that executes a second function with a concrete params.This code works in Firefox but not in Chrome, its inspector shows a weird error, Uncaught TypeError: Illegal ...
1
vote
1answer
64 views

Use JAR file in c++/c [closed]

Possible Duplicate: How to access the Java method in a C++ application I need to use JAR file in c++ program. i.e. from c++ i need to call java function, for example, In java there is ...
1
vote
1answer
51 views

Is registering / unregistering to a .NET event a constant time operation?

Initially, I had assumed yes, because I understood that the invocation list for a multi-cast delegate is implemented as a linked list, which supports constant time insertion and deletion. However, ...
1
vote
0answers
78 views

Debugger behaviour changes between vs2008 and vs2010

I'm struggling with the behavioural difference between the visual studio 2008, and 2010 debugger. In 2008, with the debugger attached, the code below would not stop to show an unhandled exception at ...
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 ...
1
vote
1answer
111 views

Blackberry File Invocation

Why this won't work on a device but it works on a bb simulator. Do you have any suggestions to make it work on the device? Invocation invocation = new ...
1
vote
3answers
1k views

iPhone: Using dispatch_after to mimick NSTimer

Don't know a whole lot about blocks. How would you go about mimicking a repeating NSTimer with dispatch_after? My problem is that I want to "pause" a timer when the app moves to the background, but ...
1
vote
3answers
206 views

Fork(): Dont return from child until it's terminated

I'm having some troubles with fork() and that kind of things. I'm developing a shell, where the user can write commands that whill be executed as in a normal and common shell. I have a main function ...
1
vote
2answers
140 views

JNI object references obtained through the Invocation API: local or global?

I'm using the JNI invocation API, which starts a JVM within a C program; in this situation, you get a JNIEnv pointer which remains valid until you explicitly destroy the JVM. Does the local/global ...
1
vote
2answers
316 views

What is the best way to reactivate an app running in the tray?

I have a delphi app that runs minimized to a tray icon. When the tray icon is double clicked the app opens a non-modal user interface form. I have added logic to the app to detect whether it is ...
1
vote
3answers
498 views

Safe to pass objects to C functions when working in JNI Invocation API?

I am coding up something using the JNI Invocation API. A C program starts up a JVM and makes calls into it. The JNIenv pointer is global to the C file. I have numerous C functions which need to ...
1
vote
2answers
233 views

AIR application talking to Java

I have situation when I need to communicate with Java process somehow. Java handling all DB works AIR just UI. It would be very nice to have AFM protocol implementation over sockets. Ideally approach ...
1
vote
2answers
226 views

Is there a way to invoke a Python function with the wrong number of arguments without invoking a TypeError?

When you invoke a function with the wrong number of arguments, or with a keyword argument that isn't in its definition, you get a TypeError. I'd like a piece of code to take a callback and invoke it ...
1
vote
3answers
412 views

Invoking a Linux process from Windows and receiving stdout

I have a legacy application in our company built on... ahem; Classic VB (VB 6). It has got a optimizer(CPLEX MIP Solver) component running on a Linux server and is developed in Java. If we want to ...
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
0answers
26 views

with NSInvocation causing SIGABRT

I've followed a few tutorials and I cant seem to adapt them to my needs. Simply I have a manager objects that returns a NSInvocation to be stored and invoked at a later point in the app. and when I ...
0
votes
0answers
64 views

XamlParseException stopping project

I am learning C# 2010 using the book 'Microsoft VS C# 2010 Step by Step' whose Chapter 27 introduces the Task Parallel Library. When I run the provided 'GraphDemo' project, I get an XamlParseException ...
0
votes
1answer
20 views

thor incorrectly called exception

class B12 < Thor desc "write", "write data into the index" method_option :methods, :desc => "The methods to call on each RawData", :type => :array def write(methods) end end When I ...
0
votes
1answer
101 views

Getting “raw” xml from webservice

I'm trying to to generate web service proxy class using ServiceContractGenerator. But the problem is that i want to recieve a "raw" xml from webservice (it may be a string or XmlNode, doesnt matter). ...
0
votes
0answers
38 views

WCF IOperationInvoker.Invoke - how to add some kind of “invocation context”?

I have searched around but haven't found anything useful regarding my question. I have a stateless WCF service with customized security. Some methods are decorated with [LoginRequired] attribute and ...
0
votes
2answers
76 views

Java ordering of method invocation, within abstract data types?

What is the ordering of method invocation when you have an abstract class with method behaviour implemented and also when no behaviour is implemented? Lets say my abstract class is called Abs and it ...
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
263 views

Asynchronous operations from WCF service or ASP.NET

I'm developing an application using WCF Ria services and Silverlight. Performance and scalability is a must in this project. The problem is that I have to invoke several WCF services from RIA Service, ...
0
votes
1answer
168 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
1answer
149 views

How to use webclient and debug and not get a targetinvocation exception?

I am debugging my silverlight app and have a webclient request that downloads a file say "www.blah.com/testfile.xml". I have the clientaccesspolicy.xml and crossdomain.xml files on the server so it ...
0
votes
2answers
100 views

J2ME - Midlet invocation type awareness

How can a MIDlet ascertain whether it has been manually invoked or automatically? Thanks!
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 = ...
0
votes
3answers
293 views

Direct invocation vs indirect invocation in C

I am new to C and I was reading about how pointers "point" to the address of another variable. So I have tried indirect invocation and direct invocation and received the same results (as any C/C++ ...
-1
votes
4answers
110 views

Problem with Method.invoke

I have a method that return a list of objects and I want to call it by the invoke method of the class Method. The only problem is that invoke method returns an Object and not a list<Object>. ...