10
votes
6answers
2k views
Are there benefits of passing by pointer over passing by reference in C++?
Are there benefits of passing by pointer over passing by reference in C++?
Lately, I have seen a number of examples that pass the a pointer instead of passing by reference. Are t …
5
votes
5answers
109 views
Hashes vs. Multiple Params?
It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.
My question is - when do you use parameters for yo …
5
votes
8answers
935 views
How do I pass a hash to a function in Perl?
I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with fu …
4
votes
3answers
172 views
Function Decorators
I like being able to measure performance of the python functions I code, so very often I do something similar to this...
import time
def some_function(arg1, arg2, ..., argN, verb …
2
votes
2answers
537 views
Using command-line argument for passing files to a program
How can I receive a file as a command-line argument?
2
votes
4answers
155 views
Querying by type in DB4O
How do you pass a class type into a function in C#?
As I am getting into db4o and C# I wrote the following function after reading the tutorials:
public static void PrintAllPi …
2
votes
3answers
144 views
Error C2228 when constructing boost::function object in constructor argument list
The code below does not compile in Visual C++ 2005.
class SomeClass {
public: boost::function<void()> func;
SomeClass(boost::function<void()> &func): func( …
2
votes
1answer
137 views
Prolog ECLiPSe - how to implement yield method?
i'm using ECLiPSe programming logic system.
i want to implement the yield method for passing the values from prolog to C/C++.
Has anyone implemented it?
Are there any other ways …
2
votes
3answers
2k views
How can I pass command-line arguments via file association in Vista 64?
How can one pass command line arguments via file association in Vista 64?
I recently built a PC running Vista Ultimate 64-bit. I noticed several of the Perl scripts I transferred …
1
vote
1answer
46 views
Execute method with arguments through action mapping in struts 2
How would I execute a method with an argument in my model based on the URL? Ie, http://server/MyAction_Arg.action maps to MyClass.MyMethod(Arg)? I tried this:
<action name="My …
1
vote
4answers
108 views
Passing parameters dynamically to variadic functions
Hi there.
I was wondering if there was any way to pass parameters dynamically to variadic functions. i.e. If I have a function
int some_function (int a, int b, ...){/*blah*/}
a …
1
vote
1answer
35 views
Create a Mac Application Installer and Passing Arguments on Launch
Couple questions on creating a mac installer.
1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?
2) When we normally launch the execut …
1
vote
2answers
126 views
Passing a touch event to all subviews of a View Controller
I have a view controller which creates multiple subviews on top of it. All subviews and the view controller accept touches. How can i communicate the touch point information to a …
1
vote
5answers
102 views
defining functions in decorator
Why does this not work? How can I make it work? That is, how can I make gu accessible inside my decorated function?
def decorate(f):
def new_f():
def gu():
…
1
vote
2answers
546 views
Pass and access structures using objective-c
I want to know how to pass structures to another function and subsequently access that structure in the called function. I'm developing for the iPhone and the reason I'm using stru …
