active questions tagged argument-passing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:58:05Zhttp://stackoverflow.com/feeds/tag/argument-passinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1872126/jquery-passing-variable-strange-syntax0jQuery passing variable strange syntaxAnkur2009-12-09T07:08:19Z2009-12-09T07:19:39Z
<p>I have the following two functions:</p>
<pre><code>$(".content").click( function() {
var id = this.id;
$.get("InfoRetrieve", { theid:id }, addContent );
});
function addContent(data){
$("#0001").append(data);
}
</code></pre>
<p>I need to pass the 'id' variable from the first function to the addContent function, I don't quite get how this works. In the above example I am passing the "data" variable to the addContent function implicitly (it seems). Will I do something like this:</p>
<p>In the first function
addContent -- becomes --> addContent(id)</p>
<p>In the second function </p>
<p>addContent(data) -- becomes --> addContent(data,id)</p>
<p>or something completely different?</p>
<p><b>Edit:</b> I made modifications as per Denis' suggestion, however now it seems as if nothing happens - previously I had sone some hard coding so I was able to see my "data" being appended to the proper place:</p>
<pre><code>$(".content").click( function() {
var id = this.id;
$.get("InfoRetrieve", { theid:id }, addContent {addContent(data, id)} );
});
function addContent(data, id){
alert(id);
$("#0001").append(data);
}
</code></pre>
<p><b> Another edit</b> Firefox says:
<br>missing ) after argument list
[Break on this error] $.get("InfoRetrieve", { theid:id ..., addContent {addContent(data, id)} );\n <br>.... but this doesn't seem to make sense since as far as I can see all the brackets match up with something else.</p>
http://stackoverflow.com/questions/1865268/how-to-pass-a-variable-from-a-link-to-a-jquery-function0How to pass a variable from a link to a jQuery functionAnkur2009-12-08T07:34:00Z2009-12-08T07:45:00Z
<p>I would like a jQuery function to know which link was clicked to call it, i.e. I would like the link's id value to be passed to the jQuery function.</p>
<p>Is this possible? If so what is the neatest way to do it.</p>
http://stackoverflow.com/questions/1858109/ruby-on-rails-passing-argument-to-singleton0Ruby on Rails: Passing argument to singletonjpatokal2009-12-07T06:04:32Z2009-12-07T11:37:19Z
<p>I have a Rails app that repeatedly talks to another Web server through a wrapper, and I'd like to stick the wrapper in a Singleton class so it's not recreated for every request. Easy enough, I thought:</p>
<pre><code>class AppWrapper < Wrapper
include Singleton
end
...
wrapper = AppWrapper.instance "url"
</code></pre>
<p>Only it doesn't work:</p>
<pre><code>wrong number of arguments (0 for 1)
/usr/lib/ruby/1.8/singleton.rb:94:in `initialize'
/usr/lib/ruby/1.8/singleton.rb:94:in `new'
/usr/lib/ruby/1.8/singleton.rb:94:in `instance'
</code></pre>
<p>Wrapper.initialize needs an argument, and apparently it's not getting passed through, since line 94 in question says</p>
<pre><code>@__instance__ = new # look Ma, no argument
</code></pre>
<p>How do I work around this? Redefining initialize in AppWrapper doesn't seem to help, and
mucking around with Wrapper to separate "set URL" from "initialize" seems suboptimal.</p>
http://stackoverflow.com/questions/1849571/calling-pointer-to-member-function-in-call-for-a-function-passed-to-a-template-fu0Calling pointer-to-member function in call for a function passed to a template function.Robert Kuykendall2009-12-04T20:48:19Z2009-12-04T21:08:05Z
<p><strong>This is the provided function template I'm trying to use:</strong></p>
<pre><code>template <class Process, class BTNode>
void postorder(Process f, BTNode* node_ptr)
{
if (node_ptr != 0)
{
postorder( f, node_ptr->left() );
postorder( f, node_ptr->right() );
f( node_ptr->data() );
}
}
</code></pre>
<p><strong>This is my call, and the function I'm passing:</strong></p>
<pre><code>void city_db::print_bst() {
postorder(&city_db::print, head);
}
void city_db::print(city_record target)
{
std::cout << target.get_code();
}
</code></pre>
<p><strong>This is the compile time (G++) error I get:</strong></p>
<blockquote>
<p>CityDb.cpp:85: instantiated from
here</p>
<p>BinTree.template:80: error: must use
‘.<em>’ or ‘-></em>’ to call
pointer-to-member function in ‘f
(...)’</p>
<p>make: *** [CityDb.o] Error 1</p>
</blockquote>
<p>This is in reference to the line <code>f( node_ptr->data() );</code> in the function template.</p>
<p>This is for a Data Structures project. The assignment was modified so we don't need to pass a function to a function, but I've been interested in this for quite some time, and I feel like I almost have it here. I've exhausted Google and Lab TA's, so if StackOverflow has ideas, they would be greatly appreciated.</p>
http://stackoverflow.com/questions/1814758/modifying-a-structure-array-through-a-pointer-passed-to-a-function0Modifying a structure array through a pointer passed to a functionZPS2009-11-29T05:40:12Z2009-11-29T05:55:29Z
<p>I am trying to pass a structure array pointer and a pointer to a structure array pointer into a function and then have it modified rather than using a return. </p>
<p>This example code is indeed pointless, its just a learning example for me.</p>
<p>Basically I want to create array[0]...array[1]..array[2] and so on and have a pointer that points to these while using a different index...such as array_ref[2] points to array[0] and array_ref[3] points to array[1].</p>
<p>The code below compiles, but immediately crashes. Any suggestions?</p>
<pre><code>typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person * array, person ***array_ref) {
array[0].name = strdup("Bob");
array[1].name = strdup("Joseph");
array[0].last_name = strdup("Robert");
array[1].last_name = strdup("Clark");
*array_ref[2] = &array[0];
*array_ref[3] = &array[1];
return 1;
}
int main()
{
person *array;
person **array_r;
array = calloc (5, sizeof(person));
array_r = calloc (5, sizeof(person));
setName(array,&array_r);
printf("First name is %s %s\n", array_r[2]->name, array_r[2]->last_name);
printf("Second name is %s %s\n", array_r[3]->name, array_r[3]->last_name);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1811702/passing-a-structure-by-reference-and-manipulating-it0Passing a structure by reference and manipulating itZPS2009-11-28T05:41:08Z2009-11-28T12:31:16Z
<pre><code>typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person *array) {
array[0].name = strdup("Bob");
array[1].name = strdup("Dick");
return 1;
}
int setLastName(person *array) {
array->last_name = strdup("Sanchez");
array++;
array->last_name = strdup("Clark");
return 1;
}
int main()
{
person array[10];
person *pointer;
pointer = array;
setName(pointer);
setLastName(pointer);
printf("First name is %s %s\n", array[0].name, array[0].last_name);
printf("Second name is %s %s\n", array[1].name, array[1].last_name);
while(1) {}
return 0;
}
</code></pre>
<p>This is some example code I came up with to play around with structures.
Notice the way I set the name in setName and the way I did it in setLastName. </p>
<p>Both work, but I'm curious whats the difference between the two ways I did it?</p>
<p>Is one way better than the other? </p>
<p>Also is strdup necessary in this example? If not, would it be necessary if I was setting array.name to random sized variables rather than string literals?</p>
http://stackoverflow.com/questions/1760812/passing-primitive-or-struct-type-as-function-argument0passing primitive or struct type as function argumentSooDesuNe2009-11-19T04:02:37Z2009-11-25T01:41:21Z
<p>I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs looks like:</p>
<pre><code>- (void)sendUpdatePacket:(MyPacketType)packet{
for(NSNetService *service in _services)
for(NSData *address in [service addresses])
sendto(_socket, &packet, sizeof(packet), 0, [address bytes], [address length]);
}
</code></pre>
<p>I would really like to be able to send this function ANY kind of packet, not just MyPacketType packets.</p>
<p>I thought maybe if the function def was:</p>
<pre><code>- (void)sendUpdatePacket:(void*)packetRef
</code></pre>
<p>I could pass in anykind of pointer to packet. But, without knowing the type of packet, I can't dereference the pointer.</p>
<p>How do I write a function to accept any kind of primitive/struct as its argument?</p>
http://stackoverflow.com/questions/1739084/execute-method-with-arguments-through-action-mapping-in-struts-21Execute method with arguments through action mapping in struts 2Ziplin2009-11-15T22:26:37Z2009-11-16T02:22:18Z
<p>How would I execute a method with an argument in my model based on the URL? Ie, <code>http://server/MyAction_Arg.action</code> maps to MyClass.MyMethod(Arg)? I tried this:</p>
<pre><code> <action name="MyAction_*" method="MyMethod({1})" class="example.MyClass">
<result>page.jsp</result>
</action>
</code></pre>
<p>but I get java.lang.NoSuchMethodException at runtime</p>
http://stackoverflow.com/questions/1402614/passing-a-touch-event-to-all-subviews-of-a-view-controller1Passing a touch event to all subviews of a View ControllerKevin 2009-09-09T23:09:30Z2009-11-14T14:15:38Z
<p>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 all the subviews on the screen? Keep in mind that each subview covers the entire screen so after a few additions its a bit like pages in a book. That is, any subviews below the top subview can't be touched directly by the user. I have tried using [self.nextResponder touchesBegan:touches withEvent:event] however this only sends the touch information from the top subview to the superview bypassing all other subviews on the screen. Thanks</p>
http://stackoverflow.com/questions/1721655/passing-parameters-dynamically-to-variadic-functions1Passing parameters dynamically to variadic functionstommobh2009-11-12T11:45:52Z2009-11-12T14:11:16Z
<p>Hi there.</p>
<p>I was wondering if there was any way to pass parameters dynamically to variadic functions. i.e. If I have a function</p>
<pre><code>int some_function (int a, int b, ...){/*blah*/}
</code></pre>
<p>and I am accepting a bunch of values from the user, I want some way of passing those values into the function: </p>
<pre><code>some_function (a,b, val1,val2,...,valn)
</code></pre>
<p>I don't want to write different versions of all these functions, but I suspect there is no other option?</p>
http://stackoverflow.com/questions/1694988/create-a-mac-application-installer-and-passing-arguments-on-launch1Create a Mac Application Installer and Passing Arguments on LaunchAllen2009-11-08T01:06:03Z2009-11-08T01:33:43Z
<p>Couple questions on creating a mac installer.</p>
<p>1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?</p>
<p>2) When we normally launch the executable we pass it an argument to point it at our servers, is there a way to encode this information into the Unix Executable File found in Contents/MacOS/?</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1435766/c-variable-scope-specific-question0C Variable Scope Specific Questiongmatt2009-09-16T22:10:40Z2009-09-16T23:42:19Z
<p>Here is a particular scenario that I have been unclear about (in terms of scope) for a long time.</p>
<p>consider the code</p>
<pre><code>#include <stdio.h>
typedef struct _t_t{
int x;
int y;
} t_t;
typedef struct _s_t{
int a;
int b;
t_t t;
}s_t;
void test(s_t & s){
t_t x = {502, 100};
s.t = x;
}
int main(){
s_t s;
test(s);
printf("value is %d, %d\n", s.t.x, s.t.y);
return 0;
}
</code></pre>
<p>the output is</p>
<pre><code>value is 502, 100
</code></pre>
<p>What is a bit confusing to me is the following. The declaration</p>
<pre><code>t_t x
</code></pre>
<p>is declared in the scope of the function test. So from what I have read about C programming, it should be garbage out of this scope. Yet it returns a correct result. Is it because the "=" on the line
s.t = x;
copies the values of x into s.t?</p>
<p>edit---</p>
<p>after some experimentation</p>
<pre><code>#include <stdio.h>
typedef struct _t_t{
int x;
int y;
} t_t;
typedef struct _s_t{
int a;
int b;
t_t t;
}s_t;
void test(s_t & s){
t_t x = {502, 100};
t_t * pt = &(s.t);
pt = &x;
}
int main(){
s_t s;
test(s);
printf("value is %d, %d\n", s.t.x, s.t.y);
return 0;
}
</code></pre>
<p>actually outputs</p>
<pre><code>value is 134513915, 7446516
</code></pre>
<p>as expected.</p>
http://stackoverflow.com/questions/1433182/passing-variables-from-main-form-to-input-form0Passing variables from main form to input formunknown (google)2009-09-16T14:03:57Z2009-09-16T14:21:43Z
<p>Hi</p>
<p>I have a simple question. I have a main form, and then a startup form from where I can select a new 3D model to generate. When selecting a new 3D model from the startup form, I want to check first whether the previous model I worked on has been saved or not. I simply want to pass a boolean value from the main form to the startup form using a delegate, but I can't seem to access the main form or any of its variables. I thought it would be as simple as saying: <code>frmMain myForm = new frmMain();</code>, but typing frmMain doesn't show up anything in intellisense.</p>
<p>Any hints?</p>
http://stackoverflow.com/questions/1348061/hashes-vs-multiple-params5Hashes vs. Multiple Params?Shay Friedman2009-08-28T16:19:57Z2009-08-28T21:11:06Z
<p>It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.</p>
<p>My question is - when do you use parameters for your method and when do you use a parameters hash?</p>
<p>Is it right to say that it is a good practice to use a parameter hash when the method has more than one or two parameters?</p>
http://stackoverflow.com/questions/1287990/how-do-i-capture-a-variable-c0How Do I capture a variable (C#)modosansreves2009-08-17T13:33:23Z2009-08-17T13:57:21Z
<p>How Do I capture a variable?<br />
Alternatively, can I store a reference to an object reference?</p>
<p>Normally, a method can alter a variable outside of it using <code>ref</code> keyword.</p>
<pre><code>void Foo(ref int x)
{
x = 5;
}
void Bar()
{
int m = 0;
Foo(ref m);
}
</code></pre>
<p>This is clear and straight-forward.</p>
<p>Now let's consider a class to achieve the same thing:</p>
<pre><code>class Job
{
// ref int _VarOutsideOfClass; // ?????
public void Execute()
{
// _VarOutsideOfClass = 5; // ?????
}
}
void Bar()
{
int m = 0;
var job = new Job()
{
_VarOutsideOfClass = ref m // How ?
};
job.Execute();
}
</code></pre>
<p>How do I write it correctly ?</p>
<p><hr /></p>
<p>Comments: I can't make it a method with an <code>ref</code> argument, because typically <code>Execute()</code> will called somewhat later in a different thread, when it comes up in the queue.</p>
<p>Currently, I made a prototype with plenty of lambdas:</p>
<pre><code>class Job
{
public Func<int> InParameter;
public Action<int> OnResult;
public void Execute()
{
int x = InParameter();
OnResult(5);
}
}
void Bar()
{
int m = 0;
var job = new Job()
{
InParameter = () => m,
OnResult = (res) => m = res
};
job.Execute();
}
</code></pre>
<p>... but maybe there is a better idea.</p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl5How do I pass a hash to a function in Perl?rlbond2009-04-29T19:08:34Z2009-08-04T23:28:18Z
<p>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 function declarations, however I can't figure out how they work in Perl. Does anyone know a good reference for this and how to accomplish what I need?
I should add that it needs to be passed by reference.</p>
<pre><code>sub PrintAA
{
my $test = shift;
my %aa = shift;
print $test . "\n";
foreach (keys %aa)
{
print $_ . " : " . $aa{$_} . "\n";
$aa{$_} = $aa{$_} . "+";
}
}
</code></pre>
http://stackoverflow.com/questions/1141902/defining-functions-in-decorator1defining functions in decoratorAlex2009-07-17T07:50:10Z2009-07-17T19:14:08Z
<p>Why does this not work? How can I make it work? That is, how can I make gu accessible inside my decorated function?</p>
<pre><code>def decorate(f):
def new_f():
def gu():
pass
f()
return new_f
@decorate
def fu():
gu()
fu()
</code></pre>
<p>Do I need to add gu to a dictionary of defined functions somehow? Or can I add gu to the local namespace of f before calling it?</p>
http://stackoverflow.com/questions/992717/error-c2228-when-constructing-boostfunction-object-in-constructor-argument-list2Error C2228 when constructing boost::function object in constructor argument listEddie2009-06-14T12:13:36Z2009-07-11T19:05:02Z
<p>The code below does not compile in Visual C++ 2005.</p>
<pre><code>class SomeClass {
public: boost::function<void()> func;
SomeClass(boost::function<void()> &func): func(func) { }
};
void someFunc() {
std::cout << "someFunc" << std::endl;
}
int main() {
SomeClass sc(boost::function<void()>(&someFunc));
sc.func(); // error C2228: left of '.func' must have class/struct/union
return 0;
}
</code></pre>
<p>If I put parentheses around the argument to the SomeClass constructor or constructs the boost::function object outside the argument list it compiles fine.</p>
<pre><code> SomeClass sc((boost::function<void()>(&someFunc)));
// or
boost::function<void()> f(&someFunc);
SomeClass sc(f);
</code></pre>
<p>What is the problem with the previous code?</p>
http://stackoverflow.com/questions/1064500/pass-and-access-structures-using-objective-c1Pass and access structures using objective-cEric de Araujo2009-06-30T15:52:39Z2009-06-30T16:54:53Z
<p>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 structs is so that I can eventually pass data as structs to a server being built in C.</p>
<p>Here's the structure:</p>
<pre><code>struct userInfo{
NSString *firstName;
NSString *lastName;
NSString *username;
NSString *email;
NSString *ipAddress;
double latitude;
double longitude;
};
</code></pre>
<p>Here I'm simply fetching some user inputed data along with some CoreLocation data and the iPhone's IP Address:</p>
<pre><code>- (IBAction)joinButton {
struct userInfo localUser;
localUser.firstName = firstName.text;
localUser.lastName = lastName.text;
localUser.username = username.text;
localUser.email = emailAddress.text;
localUser.ipAddress = localIPAddress.text;
localUser.latitude = currentLocation.coordinate.latitude;
localUser.longitude = currentLocation.coordinate.longitude;
[myNetworkConnection registerWithServer:&localUser];
}
</code></pre>
<p>function handling the struct:</p>
<pre><code>- (void)registerWithServer:(struct userInfo*)myUser {
printf("First name is: %s", myUser.firstName);//error when compiling
}
</code></pre>
<p>the complier throws this error: <code>request for member 'firstName' in something not a structure or union</code>. Is that struct out of scope when I try to access it in the second function?</p>
http://stackoverflow.com/questions/638452/prolog-eclipse-how-to-implement-yield-method2Prolog ECLiPSe - how to implement yield method?Archana R2009-03-12T12:42:45Z2009-06-29T20:36:47Z
<p>i'm using ECLiPSe programming logic system.</p>
<p>i want to implement the yield method for passing the values from prolog to C/C++.
Has anyone implemented it?</p>
<p>Are there any other ways for passing the values?</p>
http://stackoverflow.com/questions/1055318/using-command-line-argument-for-passing-files-to-a-program2Using command-line argument for passing files to a programJohanna2009-06-28T17:24:56Z2009-06-28T23:27:23Z
<p>How can I receive a file as a command-line argument?</p>
http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o2Querying by type in DB4OShaharyar2009-06-22T13:43:53Z2009-06-22T14:43:09Z
<p>How do you pass a class type into a function in C#?</p>
<p>As I am getting into db4o and C# I wrote the following function after reading the tutorials:</p>
<pre><code> public static void PrintAllPilots("CLASS HERE", string pathToDb)
{
IObjectContainer db = Db4oFactory.OpenFile(pathToDb);
IObjectSet result = db.QueryByExample(typeof("CLASS HERE"));
db.Close();
ListResult(result);
}
</code></pre>
http://stackoverflow.com/questions/999355/passing-variables-in-objective-c0Passing variables in objective CRobb2009-06-16T02:32:47Z2009-06-17T19:28:39Z
<p>Normally i've been passing variable around in init methods, but I can't do that this time because I have a var in one ViewController class displayed using a tab bar and I need access to it from a different ViewController class when a different tab bar is pressed. My understanding was that you can access vars using @property but it's now working so I'm doing something wrong. Here is what I have:</p>
<pre><code>Class 1 Header file
@interface DailyViewController : UIViewController <UIActionSheetDelegate> {
NSDate *today;
}
@property (readwrite, nonatomic, retain) NSDate *today;
Class 2 implementation file:
- (void)viewWillAppear:(BOOL)animated{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateStyle:NSDateFormatterLongStyle];
[formatter setTimeStyle:NSDateFormatterNoStyle];
DailyViewController *otherClass = [[DailyViewController alloc] init];
NSString* todayString = [formatter stringFromDate:otherClass.today];
r_todayLabel.text = todayString;
[otherClass release];
[formatter release];
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/993452/splitting-proc-cmdline-arguments-with-spaces1Splitting /proc/cmdline arguments with spaceshendry2009-06-14T18:38:22Z2009-06-17T17:47:30Z
<p>Most scripts that parse /proc/cmdline break it up into words and then filter out arguments with a case statement, example:</p>
<pre><code>CMDLINE="quiet union=aufs wlan=FOO"
for x in $CMDLINE
do
»···case $x in
»···»···wlan=*)
»···»···echo "${x//wlan=}"
»···»···;;
»···esac
done
</code></pre>
<p>The problem is when the WLAN ESSID has <strong>spaces</strong>. Users expect to set <code>wlan='FOO</code>
BAR' (like a shell variable) and then get the unexpected result of <code>'FOO</code> with the above code, since the for loop splits on spaces.</p>
<p>Is there a better way of parsing the <code>/proc/cmdline</code> from a shell script falling short of almost evaling it? </p>
<p>Or is there some quoting tricks? I was thinking I could perhaps ask users to entity quote spaces and decode like so: <code>/bin/busybox httpd -d "FOO%20BAR"</code>. Or is that a bad solution?</p>
http://stackoverflow.com/questions/948947/what-are-the-differences-between-parameter-definitions-as-type-name-and-type0What are the differences between parameter definitions as (type& name), and (type* name)?Ignas Limanauskas2009-06-04T06:50:39Z2009-06-04T09:04:50Z
<p>A very basic question, but still, it would be good to hear from C++ gurus out there.</p>
<p>There are two rather similar ways to declare by-reference parameters in C++.</p>
<p>1) Using "asterisk":</p>
<pre><code>void DoOne(std::wstring* iData);
</code></pre>
<p>2) Using "ampersand":</p>
<pre><code>void DoTwo(std::wstring& iData);
</code></pre>
<p>What are implications of each method?
Are there any gotcha's in any case?</p>
<p>Bonus #1: What would be a formal way to call method in #1 and #2? Are they both called "by-reference"?</p>
<p>Bonus #2: std::wstring is used deliberately. What would be implications towards standard library classes in each case?</p>
http://stackoverflow.com/questions/894604/passing-dynamically-allocated-integer-arrays-in-c0Passing dynamically allocated integer arrays in CJumper Bones2009-05-21T19:15:34Z2009-05-21T19:41:07Z
<p>Hello,</p>
<p>I read the example on "<a href="http://stackoverflow.com/questions/423554/passing-multi-dimensional-arrays-in-c">Passing multi-dimensional arrays in C</a>" on this site.</p>
<p>It is a great example using char arrays, and I learned a lot from it. I would like to do the same thing by creating a function to handle a dynamically allocated one-dimensional integer array, and after that, create another function for handling a multi-dimensional integer array. I know how to do it as a return value to a function. But in this application I need to do it on the argument list to the function.</p>
<p>Just like in the example I mentioned above, I would like to pass a pointer to an integer array to a function, along with the number of elements "num" (or "row" and "col" for a 2D array function, etc.). I got a reworked version of the other example here, but I cannot get this to work, try as I might (lines of code that are new, or modified, from that example, are marked). Does anyone know how to solve this?</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ELEMENTS 5
void make(char **array, int **arrayInt, int *array_size) {
int i;
char *t = "Hello, World!";
int s = 10; // new
array = malloc(ELEMENTS * sizeof(char *));
*arrayInt = malloc(ELEMENTS * sizeof(int *)); // new
for (i = 0; i < ELEMENTS; ++i) {
array[i] = malloc(strlen(t) + 1 * sizeof(char));
array[i] = StrDup(t);
arrayInt[i] = malloc( sizeof(int)); // new
*arrayInt[i] = i * s; // new
}
}
int main(int argc, char **argv) {
char **array;
int *arrayInt1D; // new
int size;
int i;
make(array, &arrayInt1D, &size); // mod
for (i = 0; i < size; ++i) {
printf("%s and %d\n", array[i], arrayInt1D[i]); // mod
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/889088/function-decorators4Function DecoratorsJaime2009-05-20T16:57:13Z2009-05-20T17:43:39Z
<p>I like being able to measure performance of the python functions I code, so very often I do something similar to this...</p>
<pre><code>import time
def some_function(arg1, arg2, ..., argN, verbose = True) :
t = time.clock() # works best in Windows
# t = time.time() # apparently works better in Linux
# Function code goes here
t = time.clock() - t
if verbose :
print "some_function executed in",t,"sec."
return return_val
</code></pre>
<p>Yes, I know you are supposed to measure performance with timeit, but this works just fine for my needs, and allows me to turn this information on and off for debugging very smoothly.</p>
<p>That code of course was from before I knew about function decorators... Not that I know much about them now, but I think I could write a decorator that did the following, using the **kwds dictionary:</p>
<pre><code>some_function(arg1, arg2, ..., argN) # Does not time function
some_function(arg1, arg2, ..., argN, verbose = True) # Times function
</code></pre>
<p>I would nevertheless like to duplicate the prior working of my functions, so that the working would be something more like:</p>
<pre><code>some_function(arg1, arg2, ..., argN) # Does not time function
some_function(arg1, arg2, ..., argN, False) # Does not time function
some_function(arg1, arg2, ..., argN, True) # Times function
</code></pre>
<p>I guess this would require the decorator to count the number of arguments, know how many the original function will take, strip any in excess, pass the right number of them to the function... I'm uncertain though on how to tell python to do this... Is it possible? Is there a better way of achieving the same?</p>
http://stackoverflow.com/questions/883632/how-do-i-pass-a-genericlist-by-reference1How do I pass a Generic::List by reference?Jon Cage2009-05-19T16:01:35Z2009-05-20T11:06:36Z
<p>In an attempt to wrap some unmanaged code in a managed .dll I'm trying to convert a <code>Generic::List</code> of data points into a <code>std::vector</code>. Here's a snippet of what I'm trying to do:</p>
<pre><code>namespace ManagedDLL
{
public ref class CppClass
{
void ListToStdVec( const List<double>& input_list, std::vector<double>& output_vector )
{
// Copy the contents of the input list into the vector
// ...
}
void ProcessData( List<double> sampleData )
{
std::vector<double> myVec;
ListToStdVec( sampleData, myVec );
// Now call the unmanaged code with the new vector
// ...
}
}
}
</code></pre>
<p>Compiling this gives me:</p>
<blockquote>
<p>error C3699: '&' : cannot use this indirection on type 'const System::Collections::Generic::List'</p>
</blockquote>
<p>I've probably missed something fundamental here (I'm relatively new to .net's way of doing things), but that looks like reasonably valid code to me.. ?</p>
<p><strong>[Edit]</strong> I've tried both Andy and Dario's suggestions and they work, but how do I then access the members of the input list? I've tried all sorts of combinations of dreferencing and nothing seems to compile:</p>
<pre><code>void ListToStdVec( const List<double>% input_list, std::vector<double>& output_vector )
{
int num_of_elements = input_list->Count;
}
void ListToStdVec( const List<double>^ input_list, std::vector<double>& output_vector )
{
int num_of_elements = input_list.Count;
}
</code></pre>
<p>...both give me:</p>
<blockquote>
<p>error C2662: 'System::Collections::Generic::List::Count::get' : cannot convert 'this' pointer from 'const System::Collections::Generic::List' to 'System::Collections::Generic::List %'</p>
</blockquote>
<p>...so how do you access the reference / pointer?</p>
http://stackoverflow.com/questions/814728/what-is-the-standardized-way-to-pass-complex-types-in-wcf0What is the standardized way to pass complex types in WCF?Ahmed Said2009-05-02T11:52:37Z2009-05-02T14:05:25Z
<p>I am a newbie in WCF, currently I am developing a TCP WCF service and I am not sure that I understand passing parameters correctly or not so I recommend you to comment and give a standardized way.</p>
<p>To get things clear I developed a small service for testing purpose that has single method and depends on an external .Net dll that exposes single class.
The service contract code</p>
<pre><code> [ServiceContract]
public interface IMyService
{
[OperationContract]
int Test1(actionType at, calculationType ct, action a);
[OperationContract]
int Test2(DataSeries s);
}
</code></pre>
<p>Where <code>actionType</code>,<code>calculationType</code>,<code>action</code> are enums declared inside the the external dll
and <code>DataSeries</code> is a class declared inside the dll.</p>
<p>The origianl defination for the <code>DataSeries</code> class in the dll is marked by <code>[Serializable]</code> only and no <code>[DataMember]</code> on its members.</p>
<p>I am using the 3rd dll on the client and server side, my surprise was both applications working fine without putting <code>[DataContract]</code> on the DataSeries class and without using any of <code>[EnumMember]</code> inside enums, <code>[DataMember]</code> inside class.</p>
<p>So what is going on?</p>
<p>Another Experiment:</p>
<p>Removing the 3rd party from the client side and using the service as it is
I found that the vs2008 generates the enums and the <code>DataSeries</code> class and markes them with the proper attributes?
like </p>
<pre><code> [System.CodeDom.Compiler.GeneratedCodeAttribute ("System.Runtime.Serialization", "3.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="actionType", Namespace="http://schemas.datacontract.org/2004/07/DBInterface")]
public enum actionType : int {
[System.Runtime.Serialization.EnumMemberAttribute()]
All = 0,
[System.Runtime.Serialization.EnumMemberAttribute()]
Buy = 1,
[System.Runtime.Serialization.EnumMemberAttribute()]
Sell = 2,
}
</code></pre>
http://stackoverflow.com/questions/810137/c-passing-arrays-to-methods0C++ - Passing Arrays To Methodskitchen2009-05-01T04:04:30Z2009-05-02T11:28:57Z
<p>Hello,</p>
<p>Here is a function similar to the one I've defined:</p>
<pre><code>void Function( BYTE *data );
</code></pre>
<p>What I would like to do is something like this:</p>
<pre><code>Function( new BYTE { 0x00, 0x00 } );
</code></pre>