Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
765 views

Throwing ArgumentNullException in constructor?

For a constructor with a single parameter, is it OK to throw an ArgumentNullException inside the constructor if the parameter is null/empty? OR, should it be thrown in the method that actually uses ...
8
votes
8answers
6k views

is there a way to write macros with a variable argument list in visual C++?

As far as I know, in gcc you can write something like: #define DBGPRINT(fmt...) printf(fmt); Is there a way to do that in VC++?
7
votes
5answers
5k views

How do you specify a required switch (not argument) with Ruby OptionParser?

Say I'm writing a script and I want to require a --host switch (with value of course) but if the --host switch isn't specified I want the option parsing to fail. I can't seem to figure out how to do ...
6
votes
2answers
126 views

How to use a variable as default value of a TCL proc argument

I've got a variable that I would like to use as default value for an argument: proc log {message {output $::output}} { .... } Is there a way to do this or need I to evaluate the variable inside ...
6
votes
11answers
2k views

Is there any way to pass an anonymous array as an argument in C++?

I'd like to be able to declare an array as a function argument in C++, as shown in the example code below (which doesn't compile). Is there any way to do this (other than declaring the array ...
5
votes
1answer
75 views

Is there a way to pass template arguments to a function on an object when the object type is a template argument?

To illustrate: struct MyFunc { template <size_t N> void doIt() { cout << N << endl; } }; template <typename Func> struct Pass123ToTemplateFunc { ...
5
votes
5answers
84 views

Should you verify parameter types in PHP functions?

I'm used to the habit of checking the type of my parameters when writing functions. Is there a reason for or against this? As an example, would it be good practice to keep the string verification in ...
5
votes
4answers
144 views

Using a constructor in a function call?

I've been searching awhile for a good explanation of why/why not the following use of the struct constructor as a function argument is legal. Can someone provide one? // Begin simple illustrative ...
5
votes
6answers
1k views

C function const multidimensional-array argument strange warning

Ehllo, I'm getting some strange warning about this code: typedef double mat4[4][4]; void mprod4(mat4 r, const mat4 a, const mat4 b) { /* yes, function is empty */ } int main() { mat4 mr, ma, ...
5
votes
3answers
87 views

How would I use the `…` C operator to get a function to print out all it's args?

Here's what I tried... but failed: void testfunc(...){ printf(...); }
5
votes
4answers
196 views

How can I pass two arrays and a string to a Perl subroutine?

How can I pass two arrays and a string to a sub? Here's what I'm trying to do: use strict; use warnings; my @x = qw(AAAA BBBB CCCC DDDD EEEE); my @y = qw(1111 2222 3333 4444 5555); my $z = ...
5
votes
4answers
7k views

“error: too few arguments to function”

I have a C program called opencv2.0 function : cvSaveImage( out_img_name, img); Compiler gcc reports that too few arguments to function cvSaveImage The prototype of cvSaveImage in highgui.h ...
4
votes
2answers
68 views

How can i pass a string literal like (“~/test/foo”) in mkdir function in C programming? [closed]

Possible Duplicate: How can I create directory tree in C++/Linux? Why mkdir fails to work with tilde (~)? i'm trying to create a directory in a C program and i use the mkdir function. My ...
4
votes
2answers
80 views

Python argument passing in object oriented programming

I apologize if this was asked somewhere else, but I do not know how else to formulate this question. I am a physicist and Python is my first object-oriented language. I love this language for its ...
4
votes
2answers
70 views

Scala: two implicit argument with the same declaration

I have following class: class Example(implicit doSomething1: (Double, Double) => Double, implicit doSomething2: (Double, Double) => Double) { //.. } As you see the constructor has two ...
4
votes
4answers
146 views

C++ “catch (…)” parameter

I recently saw something interesting in some c++ code: try { //doStuff } catch ( ... ) { //doStuff } The "..." is what I'm referring to. Now, at first glance one might think that this is ...
4
votes
2answers
200 views

Is there a way to check, if an argument is passed in single quotes?

Is there a (best) way to check, if $uri was passed in single quotes? #!/usr/local/bin/perl use warnings; use 5.012; my $uri = shift; # uri_check # ... Added this example, to make my problem more ...
4
votes
2answers
120 views

php interpreter and superglobals

first of all, I'm a French student, so excuse me for my poor English level. We are currently developing a web server (C++) and I must develop the CGI execution part, more exactly : The PHP CGI part. ...
4
votes
2answers
365 views

When to release/retain an object that is passed to a secondary Thread?

I am passing an object to a secondary thread using the following code: (void)login:(id)sender { platformMsgs_LoginRequest *loginRequest = [[[platformMsgs_LoginRequest alloc] init] autorelease]; ...
4
votes
5answers
543 views

C parsing double from argument strings

I'm trying to parse an argument value in C and convert the number to a double value. I have: char *stringEnd; double num = strtod("123.0", &stringEnd); I used 123.0 just to test the function, ...
4
votes
1answer
1k views

zsh alias -> function?

Suppose I have: alias gg="git grep" then stuff like: gg "int x" works, but gg int x gets complaints. Is there a way to rewrite gg as a function in zsh so that it takes all the arguments ...
4
votes
8answers
403 views

pythonic way to convert variable to list

I have a function whose input argument can either be an element or a list of elements. If this argument is a single element then I put it in a list so I can iterate over the input in a consistent ...
3
votes
2answers
47 views

JavaScript instanceof: can't define what instance of function's argument is

I'm still learning JavaScript,reading books,utilizing FireBug,experimenting. I'm amazed and stuck on thing below. Have function declaration: var t = function (args){ ... } ...
3
votes
2answers
72 views

Anyone can give me a summary of “single quote mark” usage in Ada?

I've just read "Ada Programming" but I'm a bit confused about how to use ' (single quote mark) in Ada. I can understand that ' is used for reference attribute. AAA'Image(..), BBB'Value(..) However, ...
3
votes
3answers
63 views

How do I use an object reference as an argument if it is instantiated after the class taking the argument?

So I have this code: package com.erikbalen.game.rpg; import com.erikbalen.platform.*; import javax.swing.JFrame; public class World extends Engine { public static void main(String[] args) { ...
3
votes
2answers
89 views

Passing an argument to a function that gets automatically converted to a pointer

Note: I am using the g++ compiler (which is I hear is pretty good and supposed to be pretty close to the standard). So, I think I've learned that passing a pointer-to-an-array or passing the actual ...
3
votes
3answers
162 views

python function of a default argument

how can i access that guy qux inside methods? Do i really have to define it again inside the body of foo() ? Or is the some magical way to import it from 'self'? class Baz(object): qux = lambda ...
3
votes
1answer
270 views

How to correctly pass through argument of object type with var prefix?

Summarization: type MyObject = object end; MyRecord = record end; MyClass = class end; procedure ProcA(aMyObject: MyObject); procedure ProcB(var aMyObject: MyObject); ...
3
votes
2answers
112 views

function as method argument in jquery without writing the entire function definition

From what i understand, in jquery, when a method requires a function as an argument you can't just invoke a predefined function like this: $('#target').click(myFunction()); ...because ...
3
votes
5answers
1k views

C++ - char** argv vs. char* argv[]

What is the difference between char** argv and char* argv[]? in int main(int argc, char** argv) and int main(int argc, char* argv[])? Are they the same? Especially that the first part does not have ...
3
votes
2answers
194 views

Passing a class object as an argument in C++

Suppose I had a class named foo containing mostly data and class bar that's used to display the data. So if I have object instance of foo named foobar, how would I pass it into bar::display()? ...
3
votes
3answers
326 views

Is NULL arguments a bad practice?

Is it a bad practice to pass NULL argument to methods or in other words should we have method definitions which allow NULL argument as valid argument. Suppose i want two method 1. to retrieve list of ...
3
votes
1answer
204 views

In GWT 2.1.0.M2 the options “-style pretty” couldn't be recognized

I am using GWT eclipse plugin and try to add option "-style pretty" inside arguments tab of debug configuration window in eclipse. But after click debug it just prompts "Unknown argument: -style". I ...
3
votes
1answer
95 views

Why is it necessary to load every argument onto the stack in CIL method?

in my application I need to dynamically create a type that contains multiple properties. I am aware that in cases such as this, one has to generate an CIL for both getter and setter methods of a ...
3
votes
6answers
915 views

How to pass argument with exclamation mark on linux?

I have simple python script that receive username and password as argument. But my password contains two exclamation marks.When i call script: salafek@dellboy:~/Desktop/$ emailsender.py -u username ...
3
votes
2answers
1k views

Default value for boost::function argument?

I've got a function that I want to take an optional boost::function argument as a callback for reporting an error condition. Is there some special value I can use a the default value to make it ...
3
votes
8answers
730 views

What is the meaning of leading underscores in a C++ constructor?

OK I am not a very experienced C++ programmer, but I was wondering what is the significance of the underscores in the arguments of the following constructor? class floatCoords { public: ...
3
votes
9answers
645 views

Validating function arguments?

On a regular basis, I validate my function arguments: public static void Function(int i, string s) { Debug.Assert(i > 0); Debug.Assert(s != null); Debug.Assert(s.length > 0); } Of course the ...
3
votes
4answers
1k views

How can I parse command-line switches in Perl?

In order to extend my "grep" emulator in Perl I have added support for a -r switch which enables recursive searching in sub-directories. Now the command line invocation looks something like this: ...
3
votes
1answer
586 views

Confusing evaluation of $args in PowerShell

The $args variable should, by definition, contain all arguments passed to a script function. However if I construct a pipeline inside my function, the $args variable evaluates to null. Anyone knows ...
2
votes
4answers
74 views

modify variable within R function

How do I modify an argument being passed to a function in R? In C++ this would be pass by reference. g=4 abc <- function(x) {x<-5} abc(g) I would like g to be set to 5.
2
votes
3answers
74 views

Why is a variable able to be defined after definition of function using it?

I have a very simple and maybe dumb question: Why does this work? def print_list(): for student in student_list: print(student) student_list = ["Simon", "Mal", "River", "Zoe", "Jane", ...
2
votes
1answer
45 views

Scala extended constructor

Say I have: class DecisionTree(private val instances: Array[Instance]){ and I want to calculate another instance variable, say totalEntropy, that requires me to do some further processing that will ...
2
votes
1answer
78 views

Global variables and arguments in matlab, which is fastest?

I am using a recursive function in Matlab where some variable are required at each level, these don't change. Though some do change in functions and also need to be reflected in main program. I'd ...
2
votes
3answers
82 views

Passing a function as an argument in Javascript

I'm really struggling with this one - sure I'm missing something simple. Here's the code :- function webcamupdate(webcamurl) { alert("I am a function to update the webcam with the url ...
2
votes
1answer
55 views

Pass class as constructor's argument

I'm trying to pass my object class as constructor argument. I have something like this: package myclass { import flash.display.MovieClip; import flash.display.BitmapData; import ...
2
votes
2answers
87 views

Can a sass @mixin accept an undefined number of arguments?

I'm trying to create a sass mixin for transitions. This is what I have so far. @mixin transition($var) -webkit-transition: $var transition: $var I want to be able to pass it multiple arguments ...
2
votes
2answers
87 views

Generics: Creating parameterized class argument

How does one get a parameterized Class object to be used as a method argument? class A<T> { public A(Class<T> c) { } void main() { A<String> a1 = new ...
2
votes
2answers
99 views

Python passing dictionary to process in multiprocessing

I have a class that contains a (large) number of different properties, including a few dictionaries. When I pass an instance of the class through to a new process, all of the numeric values seem to ...
2
votes
3answers
175 views

Objective-C: Pass selector as parameter and then call it

i'm trying to pass a selector as a parameter and execute it later. But i get a SIGABRT error when i try to call the selector with the next error in console: Terminating app due to uncaught ...

1 2 3 4 5