Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

71
votes
7answers
26k views

Function overloading by return type?

Why don't more mainstream statically typed languages support function/method overloading by return type? I can't think of any that do. It seems no less useful or reasonable than supporting overload ...
10
votes
4answers
3k views

php: determine where function was called from

is there a way to find out, where a function in PHP was called from? example: function epic() { fail(); } function fail() { //at this point, how do i know, that epic() has called this function? ...
10
votes
2answers
7k views

ARM to C calling convention, registers to save

It's been a while since I last coded arm assembler and I'm a little rusty on the details. If I call a C function from arm, I only have to worry about saving r0-r3 and lr, right? If the C function ...
9
votes
3answers
237 views

Is it possible to emulate a function using your own data type?

Is it possible to emulate a function with your own data type with some GHC extension? What I want to do is e.g. (imaginary syntax) data MyFunc = MyFunc String (Int->Int) instance (Int->Int) MyFunc ...
9
votes
15answers
443 views

Any programming language with “strange” function call?

I was wondering, is there any programming language where you can have function calls like this: function_name(parameter1)function_name_continued(parameter2); or ...
7
votes
7answers
241 views

What is the scope of a defaulted parameter in Python?

When you define a function in Python with an array parameter, what is the scope of that parameter? This example is taken from the Python tutorial: def f(a, L=[]): L.append(a) return L print ...
7
votes
4answers
3k views

What is a callback function and how do I use it with OOP

I want to use the php simple HTML DOM parser to grab the image, title, date, and description from each article on a page full of articles. When looking at the API I notice it has a set_callback which ...
6
votes
5answers
4k views

Calling a function from a string in C#

I know in php you are able to make a call like: $function_name = 'hello'; $function_name(); function hello() { echo 'hello'; } Is this possible in .Net?
4
votes
5answers
96 views

arguments are reversed for a C function

I have a function that multiply two matrices A and B then prints the result. I got two different outputs when running the program in two similar ways. first: FILE *f; f = ...
4
votes
2answers
430 views

Function arguments push order

Why are function arguments pushed on the stack in right to left order?
4
votes
3answers
909 views

Passing functions which have multiple return values as arguments in Python

So, Python functions can return multiple values. It struck me that it would be convenient (though a bit less readable) if the following were possible. a = [[1,2],[3,4]] def cord(): return 1, 1 ...
3
votes
1answer
93 views

time seen from inside function surprisingly lower than time seen from calling code

I have a problem with time measuring that's really bothering me. I am executing something like the following code (in C#) : Stopwatch sw = Stopwatch.StartNew(); Foo(args); sw.Stop(); //log time ...
3
votes
2answers
146 views

python - time to execute a loop increases suddenly

I have some small piece of software that calculates the number of factors of each triangle number to see what is the first one of them has more than X number of factors (yes, it's a projecteuler ...
3
votes
4answers
115 views

C++ void prefixed to a function call. eg. `main() {void func();}`

void func() {assert(0);} int main () {void func();} The above code does not call func(), or at least does not reach the assertion. Not that I really need to know, but I'm just curious, what is going ...
3
votes
4answers
128 views

Passing Function name as arguments to a function

Is it possible to pass the name of a function(say A) as an argument to another function (say B), and then call function A from function B. That is the function name will be stored in a variable in B, ...
3
votes
4answers
148 views

Lisp function call error

I've written a Lisp function like this: (defun power (base exponent) (if (= exponent 0) 1 (* base (power (- exponent 1))))) When I try to call it, however, I get some errors: CL-USER 2 ...
3
votes
4answers
432 views

Call matlab functions in silverlight

Is it possible to call matlab functions from Silverlight / C# ? Thanks in advance!
3
votes
2answers
6k views

How to call C# DLL function from VBScript

I have my script on server, so I have not UI interaction available and have to use DLL instead of console application. How to call a function in C# DLL from VBScript? Have I make my DLL to be ...
3
votes
5answers
624 views

Automatically call function #2 upon calling function #1

This should be a quick one. Is it possible to do something like this: [Callback(funtionY)] void functionX() { } void functionY() { } So that when functionX is called, functionY is called ...
3
votes
7answers
4k views

Synchronous dialogs in Flex?

How can I open a synchronous dialog in Flex? I need to call a function from an External Interface (JavaScript) that will open a simple dialog in the Flex application and returns an value according to ...
2
votes
4answers
205 views

Difference between calling of virtual function and non virtual function?

This is in fact an interview question, I can't figure out the answer. Anyone knows about this? You can talk about any difference, for example, the data that are push into stack.
2
votes
1answer
59 views

in vb6, how do I retrieve a char* parameter from a C dll?

I am calling a C dll from my VB6 application. The dll has a function call signature as follows. void WINAPI geterrstr(char* foo); where foo is a string that has to be returned. In my VB6 ...
2
votes
1answer
51 views

Restrict Function Calls in Child Class

I have a base class Base, and derived classes from it such as DerivedA, DerivedB etc. And I have task classes derived from android.os.AsyncTask such as TaskA, Task B, TaskC etc. What I want to ...
2
votes
5answers
500 views

How to do call by reference in Java?

Since Java doesnt support pointers, How is it possible to call a function by reference in Java like we do in C and C++??
2
votes
3answers
133 views

Are variables in python functions reinitialized with each function call?

Assume I have two functions def myfunction1(number): biglist = [1,2,3,4,5,6,7,8,9] print number*biglist biglist = [1,2,3,4,5,6,7,8,9] def myfunction2(number, biglist): print ...
2
votes
3answers
444 views

Can JavaScript call a PHP function directly, or do I need separate php file to call the function?

I am doing some basic Ajax stuff (not jquery.. just learning the basics), and I have a general structure set up where html calls a javascript function which sends data to and runs a specific php page. ...
2
votes
1answer
92 views

K&R exercise question to an answer about the original question

I kept trying to wrap my head around a solution to K&R problem 7-8, until I found this solution (with the original problem) right on this site. I am unable to comment on the answer (probably due ...
2
votes
3answers
566 views

Is it good practice to call module functions directly in VB.NET?

I have a Util module in my VB.NET program that has project-wide methods such as logging and property parsing. The general practice where I work seems to be to call these methods directly without ...
2
votes
4answers
274 views

Call function of included JavaScript code from another included JavaScript

I'm trying to work with different loaded JavaScript in my page, but I'm not able to let them talk. <html> <script type="text/javascript" src="jquery144.js"></script> <script ...
2
votes
4answers
173 views

Componetizing jQuery functions calls. Best practices?

I'm building a site that is going to consist of components. A component defined as a particular set of HTML and CSS and jQuery. Each page of the site will consist of many components. Per best ...
2
votes
3answers
1k views

PHP: call_user_func_array: pass by reference issue

The below function generates error when a function contains referenced arguments eg: function test(&$arg, &$arg2) { // some code } Now I can not use call_user_func_array for above ...
2
votes
4answers
2k views

how do procedure calls work in assembler?

I just started tinkering with ASM and I'm not sure if my understanding of procedure calls is correct. say at some point in the code there is a procedure call call dword ptr[123] and the procedure ...
2
votes
5answers
156 views

Is there a system where executing a program and calling a function is unified?

I would like to be able to do one or more of the following from the shell: - call any function from the program not only the main - pass parameters that are not only strings (not only argv) - have ...
2
votes
7answers
581 views

How to maintain lists and dictionaries between function calls in Python?

Its urgent... I have a function. Inside that I'm maintainfing a dictionary of values. I want that dictionary to be maintained between different function calls Suppose the dic is : a = ...
2
votes
4answers
948 views

Visual Studio - show all calls to a function in source code level

I am wondering if there is anyway to list all the calls to a function in source code level so that I can see the dependency if I modify that function. One method I use is to search the function name ...
2
votes
3answers
14k views

Invoking asynchronous call in a C# web service

I'm consuming a third-party resource (a .dll) in a web service, and my problem is, that invoking this resource (calling a method) is done asynchronous - I need to subscribe to an event, to get the ...
2
votes
4answers
912 views

Using function prototypes dynamically in PHP

I'm writing a construct in PHP where a parser determins which function to call dynamically, kind of like this: // The definition of what to call $function_call_spec = array( "prototype" => ...
1
vote
0answers
54 views

It's possible to call changePage() inside pagebefore event?

I'm working in a file called action.js to manage all the actions in my app. In this file I capture the event pagebeforechange. This is a fragment code from my action.js: $(document).bind( ...
1
vote
1answer
127 views

Calling a javascript function in iFrame opened with Fancybox popup

I'm trying to call a javascript function in a page opened in an iFrame using jQuery Fancybox. $(".testbox").fancybox({ maxWidth : 800, maxHeight : ...
1
vote
1answer
73 views

how does python 3.2 handle function calls from loops?

I am not worried about functions defined by me, but built-in functions or esp. ones from imported modules. Basically, do these pieces of advice still apply? ...
1
vote
5answers
96 views

Function call with different datatypes

Isn't line 7 of this program "pay = prt(pay);" supposed to throw a compile or run-time error because it is passing in an int to a param that requires a double? I compiled it fine with dev-c++ and ran ...
1
vote
6answers
115 views

performance implications of global variables in c

I have 5 functions which gets called 10000+ times (on an average). All of them modifies/uses certain variables. I know it is bad practice to have global variables. But for performance sake, does it ...
1
vote
2answers
158 views

How to call a setter method with arguments dynamically in flash AS3

This AS3 function works for normal methods and getter methods: public function MyClassTestAPI(functionName:String, ...rest):* { var value:*; try { ...
1
vote
4answers
122 views

C++ Function Call vs. New Blocks for Push/Popping on the Stack

I was reading about variable scope in C++ and encountered an interesting block structure: int main(int argc, char **argv) { int local; { // New level of scope int more_local; } ...
1
vote
3answers
121 views

Passing keyword arguments to a function when local variable names are same as function parameter names

Is there a more succint way to write this? f(a=a, b=b, c=c, d=d, e=e) Background: I have a function with too many arguments f(a, b, c, d, e): pass I my program I have local variables that ...
1
vote
1answer
272 views

How to parse JavaScript function expression calls with ANTLR?

I am building a JavaScript instrumentor with ANTLR, using the Patrick Hulsmeijer EcmaScript 3 grammar. I'm having a problem parsing this line of code: function(){}(); that is a direct call of a ...
1
vote
1answer
125 views

How to find function that never called [closed]

Possible Duplicate: Find never-called functions Hello I know that similar question was already asked Find never-called functions but maybe someone have some other solutions?That don't ...
1
vote
4answers
188 views

C++ class function in assembly

Hello Community I am look at C++ assembly, I have compiled a benchmark from the PARSEC suite and I am having difficulty knowing how do they name the class attribute functions in assembly language. for ...
1
vote
3answers
306 views

C++ templates no matching function call

I have a member function of a template class declared as such: template <class T> int Data<T>::getPosition(vector<T> stuff, T newStuff, bool ascending) I call this somewhere with ...
1
vote
4answers
160 views

Javascript function call

How to call more than one javascript function on the window's onload event? For Ex, window.onload=MyFunc(); //Single Function But what if there are more than one functions to call on ...

1 2