4
votes
6answers
673 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 de …
3
votes
1answer
85 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 ref …
3
votes
1answer
137 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 def …
1
vote
6answers
147 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( …
1
vote
4answers
827 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?
0
votes
3answers
196 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 Jav …
