The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
49 views

String in function parameter

int main() { char *x = "HelloWorld"; char y[] = "HelloWorld"; x[0] = 'Z'; //y[0] = 'M'; return 0; } In the above program, HelloWorld will be in read-only ...
0
votes
1answer
34 views

C#: How can I pass a class to a function in separate dll

I tried to code my own serialization dll. The code itself works as expected. Now I want to put the entire code into a dll file. My problem is the following: how do I tell the dll WHICH class it ...
0
votes
1answer
27 views

How to register member function with lua-function parameter using luabind?

I need to register a member function using luabind which is supposed to take a lua-function as parameter. For any normal function I would usually just do this: int SomeLuaFunction(lua_State *l) { ...
-2
votes
1answer
73 views

Declaring multiple variables at once in a function

If int a, b, c; is a valid declaration Why not int f(int a, b, c)?
0
votes
3answers
40 views

php function parameter is not retaining full string passed in

I have a PHP function that in echoing out a string, is losing some of the characters passed in it. Any reason why this would be happening? I pass: $vhkvdov#jqlydk#p*_L#1qrlws|ufqh#KWLZ#1hwdgsX It ...
0
votes
3answers
31 views

exec a parameter that is a function javascript

I have an object that contains a lot of arrays inside. This array content function-paramenters. for example: object = {"elem" : [fn1, fn2], "other-elem" : [fn3, fn4, fn5], ... } I want to make a ...
2
votes
1answer
46 views

Parameter is the name of a variable instead of its value when initialising an object with a function as property

I'm trying to initialize properties of an object, one being a function. This works if I hardcode it: subitems = { "1" : { "label": "Link1", "action": function(obj) ...
0
votes
2answers
31 views

how pass a prototype function and use in javascript

I have a Graph class and I want to pass its prototype function to another function. Here is a small snippet code of the class function Graph(opts) { this.filled = opts.filled; this.max = ...
0
votes
2answers
204 views

Changing opacity of DIV within Javascript by passing a function parameter?

I have the following code and I want to change the opacity of the two DIV tags to .5. I cannot seem to get it to work like the width and height. Am I not passing the opacity parameters correctly or is ...
0
votes
3answers
178 views

Passing a list as positional arguments to a function like Python in F#

In Python, you can write this: def func(a, b, c): .... list = [4, 5, 6] print func(*list) The asterisk in front of list expands the iterable so that its elements are used as the parameters a, b ...
2
votes
1answer
66 views

Variadic function declaration VS a function taking a list

While designing a class or a function, which way, that is shown below, is better and why? class Container { //Provide this functionality?? void addItemVariadic(const Value& val, ...); ...
0
votes
1answer
50 views

Do i need to release parameter in asynchronous function?

I've googled a lot for this, but get no clue for it. First of all, i'm not using ARC. let's say i am calling a asynchronous function, and passing a pointer A to it, initialially i thought, okay, ...
0
votes
1answer
85 views

Use key's value as key in key-value pair in a Javascript function param [duplicate]

Possible Duplicate: Use key’s value as key in key-value pair in Javascript As a followup to Use key's value as key in key-value pair in Javascript function parameter. How can you use the ...
5
votes
3answers
118 views

What's the meaning of the `…` parameter in a C function parameter list [duplicate]

Possible Duplicate: C/C++: Passing variable number of arguments around According to the function declaration manner return-type function-name(parameter-list, ...) {body ...} Is the ...
1
vote
2answers
81 views

JNA:How exactly function and its parameter mapping take place from java to VC++

In java i am using JNA to load VC++ dll file and calling functions within it,in one function i need to send 6 parameters,In VC++ function definition i am getting correct values for first 3 parameters ...
303
votes
11answers
26k views

Why does a function with no parameters (compared to the actual function definition) compile?

I've just come across someone's C code that I'm confused as to why it is compiling. There are two points I don't understand. First, the function prototype has no parameters compared to the actual ...
0
votes
1answer
45 views

Passing a string type to a function

I have the following code: cls $input = 'Hello World' Write-Host '$input.GetType() = ' + $input.GetType() function some-string-function($input) { Write-Host 'In the function now' Write-Host ...
-1
votes
1answer
512 views

PHP Validation Input Form [closed]

I'm making an input form, and I'm currently in the process of validating the code. I run into this validation code from a blog and it seems pretty neat. Does anybody know how to implement this code ...
0
votes
1answer
313 views

Read From File and Store Strings into a Multidimensional Array of Strings in C

I really need to know how to fix this. I have a file that is read and I store the strings from the file into an array that is passed as an argument, but I can't figure out how to make it work. When ...
-1
votes
3answers
779 views

JavaScript: Define variable name with function parameter

Is it possible in JavaScript to define a variable name with a function parameter? Here is my jsFiddle. In the example below, I would like varB to be defined as null when it is passed through ...
0
votes
4answers
282 views

javascript/backbone js passing parameters to functions - some doubts

This may be a javascript 101 or Backbone 100 questions. But I feel comfortable in asking this beginning question and not being made fun of here :) The following code snippet is from Code School's ...
0
votes
2answers
63 views

Dealing with pointer argument in C

I'm using a library which has a function with the following signature: void LED_stop_blink_task ( void * callback_parameter ); The actual parameter the void pointer stands for is a pointer to ...
3
votes
2answers
175 views

Scala - parameter of type T or => T

Is there any difference between the following def foo(s: String) = { ... } and def foo(s: => String) { ... } both these definitions accept "sss" as parameter.
4
votes
1answer
399 views

MATLAB: Is there a method to better organize functions for experiments?

I will run a set of experiments. The main method evaluated has the following signature: [Model threshold] = detect(... TrainNeg, TrainPos, nf, nT, factors, ... removeEachStage, ...
2
votes
1answer
144 views

Success and failure function parameters Scala pattern

Is there an alternative pattern for having success and failure closures in Scala? There's nothing wrong with this convention that's similar to what node.js libraries normally do, but I'm just ...
0
votes
1answer
125 views

Making function pointers in C to Java functions

I am re-writing a Palm Pilot program to Android, and have hit a wall. My lack of C experience leaves me completely at a loss for ideas. This is the original C code : The .h file : typedef void ...
0
votes
2answers
370 views

Passing jQuery.show() & jQuery.hide() as parameter to be applied on an element

As the title reads, I'd like to pass show() & hide() jQuery functions as parameters in another function. function applyActionOnClass(attr, action) { $('#salesonhold_table tr').each(function ...
4
votes
2answers
398 views

Variadic templates without function parameters

Can I use variadic templates without using the template parameters as function parameters? When I use them, it compiles: #include <iostream> using namespace std; template<class First> ...
6
votes
4answers
251 views

Will a reference bound to a function parameter prolong the lifetime of that temporary?

I have this code (simplified version): const int& function( const int& param ) { return param; } const int& reference = function( 10 ); //use reference I can't quite decide to ...
1
vote
2answers
578 views

assignment operator within function parameter C++

I'm studying data structures (List, Stack, Queue), and this part of code is confusing me. ListNode( const Object& theElement = Object(), ListNode * node = NULL); template<class Object> ...
2
votes
2answers
349 views

How to receive unnamed structures as function parameters in C?

Yesterday while going through this question, I found a curious case of passing and receiving unnamed structures as function parameters. For example, if I have a structure like this, int main () { ...
6
votes
4answers
792 views

C++ : Meaning of const char*const*

In one of the C++ programs, I saw a function prototype : int Classifier::command(int argc, const char*const* argv) What does const char*const* argv mean? Is it the same as const char* argv[]? Does ...
1
vote
2answers
184 views

Local instance of a base enum or passing enum collection?

I am using Stateless to implement FSM's in multiple classes. (http://code.google.com/p/stateless/) I want to use a base class for firing triggers and logging, etc.. I also want to enforce that any ...
-3
votes
2answers
214 views

Default Parameters in Functions - C++ [closed]

If I'm not wrong this kind of declaration may be used to assign default values in a constructor: /* .h */ class FooClass(){ private: int* data; int depth, rows, columns; char* ...
0
votes
5answers
660 views

Does C support optional null parameters?

In Python, I'm used to things like def send_command(command, modifier = None): and then the modifier argument is optional, and the absence of the argument can be differentiated from an argument of ...
-1
votes
1answer
445 views

C++ Compilation error: Undefined identifier (for a function parameter)

I have a C++ class main.cpp in which I created a class like following: class MapSearchNode { public: unsigned int x; // the (x,y) positions of the node unsigned int y; MapSearchNode() { x = y = ...
-1
votes
2answers
93 views

Passing values to a function from within a function in python

I need to pass values from one function to the next from within the function. For example (my IRC bot programmed to respond to commands in the channel): def check_perms(nick,chan,cmd): sql = ...
2
votes
3answers
569 views

Passing inline double array as method argument

Consider method functionA (double[] arg) I want to pass a double array inline, like functionA({1.9,2.8}) and not create an array first and then pass it, like double var[] = {1.0,2.0}; ...
1
vote
1answer
73 views

Function call as default parameter - possible to use other parameters in the footprint?

Suppose I have the following function, the value it produces is needed by many other functions in the code: float mean(foo param1, bar param2); My other functions look like this: float foobar(foo ...
11
votes
8answers
321 views

Assign function arguments to `self`

I've noticed that a common pattern I use is to assign SomeClass.__init__() arguments to self attributes of the same name. Example: class SomeClass(): def __init__(self, a, b, c): self.a = ...
6
votes
2answers
104 views

Which approach is better for supplying compile time constants to a function ? Function argument vs. Template parameter

I have logging function being called at several places throughout the code. To every log, I have to supply 2 compile time constants. There are 2 approaches to accomplish: (1) Function argument: ...
0
votes
1answer
842 views

Functions with parameters in TASM

Could you please post an example in assembly language that uses functions with parameters. Something simple, like function that returns a sum of two elements. Couldn't google any example that is ...
0
votes
4answers
2k views

Skipping optional function parameters in JavaScript

Could you please point me to the nice way of skipping optional parameters in JavaScript. For example, I want to throw away all opt_ parameters here: goog.net.XhrIo.send(url, opt_callback, ...
2
votes
4answers
350 views

Declaring parameter of a function as final: why and when is it needed?

Going through a tutorial for android (related to multithreading, loopers and handlers), i came across this: public synchronized void enqueueDownload(final DownloadTask task) My questions are: ...
0
votes
5answers
307 views

Char has a different size than a string

I was working with a program that uses a function to set a new value in the registry, I used a const char * to get the value. However, the size of the value is only four bytes. I've tried to use ...
0
votes
3answers
66 views

Can $(this ) object be used to point to a function

I have a code something below: function showHideOptions() { $("#template1, #template2, #template3, #template4").css("display","none"); $(this).css("display","block"); } And I ...
4
votes
5answers
154 views

passing a function as a parameter

void dispatch_for(dispatch_queue_t *queue, long number, void (* work)(long)){ int loop = number; int i; task_t *ctask; for(i = 0; i<loop;i++){ ctask = create_task((void ...
0
votes
5answers
2k views

Toggle Multiple divs for show hide

ok, So I have multiple divs(7) which I want to toggle for show hide. If one div is open rest should hide and when I open a new div the others should hide. I have been able to accomplish this with the ...
1
vote
1answer
139 views

Setting local variables to a function instead of using globals optimize the function

In the documentation for the itertools module I found this comment def dotproduct(vec1, vec2): return sum(imap(operator.mul, vec1, vec2)) Note, many of the above recipes can be optimized by ...
7
votes
2answers
2k views

c++0x: proper way to receive a lambda as parameter by reference

what is the right way to define a function that receives a int->int lambda parameter by reference? void f(std::function< int(int) >& lambda); or void f(auto& lambda); i'm not sure ...

1 2