Tagged Questions
The arguments tag has no wiki summary.
47
votes
14answers
8k views
Looking for a Command Line Argument Parser for .NET [closed]
I'm looking for a command line argument parser, such as "Command line parser" from http://www.sellsbrothers.com/tools/Genghis/ .
Features I'm looking for:
Auto-generation of usage
Should able to ...
47
votes
5answers
1k views
Arguments or parameters?
I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world.
What's the correct convention for their use?
45
votes
7answers
6k views
Is there a better way to do optional function parameters in Javascript?
I've always handled optional parameters in Javascript like this:
function myFunc(requiredArg, optionalArg){
optionalArg = optionalArg || 'defaultValue';
//do stuff
}
Is there a better way to ...
40
votes
9answers
26k views
JQuery pass more parameters into callback
Is there a way to pass more data into a callback function in Jquery?
I have two functions and I want the callback to the $.post, for example, to pass in both the resulting data of the AJAX call, as ...
32
votes
8answers
4k views
What's the difference between an argument and a parameter?
When verbally talking about methods in C# during a code review or in pairing I'm never sure whether to use the word argument or parameter or something else. Either way the other people know what I ...
31
votes
3answers
7k views
Is there a difference between foo(void) and foo() in C++ or C
Consider these two function definitions
void foo(){}
void foo(void){}
Is there any difference between these two? If not, why is the void argument there? Aesthetic reasons?
30
votes
4answers
22k views
What is the difference between _tmain() and main() in C++?
If I run my C++ application with the following main() method everything is OK:
int main(int argc, char *argv[])
{
cout << "There are " << argc << " arguments:" << endl;
...
29
votes
14answers
9k views
24
votes
2answers
15k views
How do I parse command line arguments in bash?
Say I have a script that gets called with this line:
./myscript -vfd ./foo/bar/someFile -o /fizz/someOtherFile
or this one:
./myscript -v -f -d -o /fizz/someOtherFile ./foo/bar/someFile
What's ...
22
votes
4answers
4k views
Reference a method parameter in javadoc
Is there a way to reference one of the method parameters from the method documentation body?
Something like:
/**
* When {@paramref a} is null, we rely on b for the discombobulation.
*
* @param a ...
22
votes
4answers
5k views
Can you list the keyword arguments a Python function receives?
I have a dict, which I need to pass key/values as keyword arguments.. For example..
d_args = {'kw1': 'value1', 'kw2': 'value2'}
example(**d_args)
This works fine, but if there are values in the ...
19
votes
11answers
16k views
Parse Command Line Arguments [closed]
Possible Duplicate:
What parameter parser libraries are there for C++?
Duplicate of:
What parameter parser libraries are there for C++?
Option Parsers for c/c++?
What is the best way ...
19
votes
11answers
15k views
Default Arguments in Matlab
Is it possible to have default arguments in Matlab? For instance, here:
function wave(a,b,n,k,T,f,flag,fTrue=inline('0'))
I would like to have the true solution be an optional argument to the wave ...
18
votes
3answers
47k views
How to pass command-line arguments to a PowerShell ps1 file
For years, I have used the cmd/dos/windows shell and passed command-line arguments to batch files. E.g., I have a file, "zuzu.bat" and in it, I access %1, %2, etc. Now, I want to do the same when I ...
18
votes
5answers
3k views
How best to determine if an argument is not sent to the JavaScript function
I have now seen 2 methods for determining if an argument has been passed to a JavaScript function. I'm wondering if one method is better than the other or if one is just bad to use?
function ...
18
votes
4answers
4k views
Which exception should I raise on bad/illegal argument combinations in Python?
I was wondering about the best practices for indicating invalid argument combinations in Python. I've come across a few situations where you have a function like so:
def import_to_orm(name, ...
17
votes
14answers
6k views
Getting the last argument passed to a shell script
$1 is the first argument.
$@ is all of them.
How can I find the last argument passed to a shell script?
17
votes
3answers
3k views
C++0x, How do I expand a tuple into variadic template function arguments?
Consider the case of a templated function with variadic template arguments:
template<typename Tret, typename... T> Tret func(const T&... t);
Now, I have a tuple t of values. How do I call ...
16
votes
3answers
14k views
How do I make a default value for a parameter to a javascript function [closed]
Possible Duplicate:
Is there a better way to do optional function parameters in Javascript?
I would like a javascript function to have optional arguments which I set a default on, which gets ...
16
votes
8answers
6k views
Speed of code execution: ASP.NET-MVC versus PHP
I have a friendly argument going on with a co-worker about this, and my personal opinion is that a ASP.NET-MVC compiled web application would run more efficiently/faster than the same project that ...
16
votes
7answers
6k views
Is there a way to change effective process name in Python?
Can I change effective process name of a Python script? I want to show a different name instead of the real name of the process when I get the system process list. In C I can set
...
15
votes
9answers
6k views
Should Java method arguments be used to return multiple values?
Since arguments sent to a method in Java point to the original data structures in the caller method, did its designers intend for them to used for returning multiple values, as is the norm in other ...
15
votes
14answers
3k views
What is the design pattern for processing command line arguments
If you are writing a program that is executable from the command line, you often want to offer the user several options or flags, along with possibly more than one argument. I have stumbled my way ...
13
votes
2answers
770 views
Why is it not allowed in Java to overload Foo(Object…) with Foo(Object[])?
I was wondering why it is not allowed in Java to overload Foo(Object[] args) with Foo(Object... args), though they are used in a different way?
Foo(Object[] args){}
is used like:
Foo(new ...
13
votes
4answers
654 views
Why isn't a function's arguments object an array in Javascript?
Since it seems like the first thing people do is convert arguments into a real array, I'm interested in why the Javascript language authors and implementers decided, and continue to think, that ...
13
votes
3answers
9k views
Converting a Javascript array to a function arguments list
Is it possible to convert an array into a function argument sequence? Example:
run({ "render": [ 10, 20, 200, 200 ] });
function run(calls) {
var app = .... // app is retrieved from storage
for ...
13
votes
5answers
7k views
Correct way to implement C# console application?
What is the correct way to implement and architect a command line tool as a C# console application?
Concerns to address include proper parsing of command line variables, and the proper way to output ...
12
votes
9answers
371 views
Is there a way to get an array of the arguments passed to a method?
Say I have a method:
public void SomeMethod(String p1, String p2, int p3)
{
#if DEBUG
object[] args = GetArguments();
LogParamaters(args);
#endif
// Do Normal stuff in the method
...
12
votes
5answers
504 views
Difference between parameter and argument
Is there a difference between a "parameter" and an "argument", or are they simply synonyms?
12
votes
9answers
10k views
How to get JavaScript caller function line number? How to get JavaScript caller source URL?
I am using the following for getting the JavaScript caller function name:
var callerFunc = arguments.callee.caller.toString();
callerFuncName = (callerFunc.substring(callerFunc.indexOf("function") + ...
12
votes
5answers
19k views
Execute PowerShell Script from C# with Commandline Arguments
I need to execute a PowerShell script from within C#. The script needs commandline arguments.
This is what I have done so far:
RunspaceConfiguration runspaceConfiguration = ...
11
votes
2answers
177 views
How to detect the first and the last argument in the variadic templates?
How to detect the first and the last argument in the variadic templates?
For the 1st argument it is easy (just compare sizeof...(T) with 0), but is there a way to detect the last element?
The ...
11
votes
9answers
474 views
Convincing customers to upgrade to Java 5
We sell packaged Java web applications to some of our customers. It's basically a collection of servlets, some SOAP web service and some static resources. We don't do EJB nor any other Java ...
11
votes
2answers
15k views
Passing around command line $args in powershell , from function to function
This is a nasty issue I am facing. Wont be surprised if it has a simple solution, just that its eluding me.
I have 2 batch files which I have to convert to powershell scripts.
file1.bat
---------
...
10
votes
5answers
593 views
Why can't we pass arrays to function by value?
Apparently, we can pass complex class instances to functions, but why can't we pass arrays to functions?
10
votes
9answers
390 views
Java enumerations vs. static constants
I'm looking at some Java code that are maintained by other parts of the company, incidentally some former C and C++ devs. One thing that is ubiquitous is the use of static integer constants, such as
...
10
votes
3answers
18k views
PowerShell - How do I pass string parameters correctly?
Is there documentation or an article on the rules for passing strings into PowerShell functions? I just trying to do some string concatenation/formatting, but it's putting all the parameters into the ...
9
votes
4answers
376 views
How do I pass a unique_ptr argument to a constructor or a function?
I'm new to move semantics in C++11 and I don't know very well how to handle unique_ptr parameters in constructors or functions. Consider this class referencing itself:
#include <memory>
...
9
votes
5answers
237 views
Is this legal javascript? Passing arguments to function and having it change them
Is this legal? And does it work in all browsers?
function func1(a, b, c) {
//b == 2 here
change_em(arguments);
//b should equal 3 here
}
function change_em(args) {
args[0] = 6;
args[1]++;
...
9
votes
1answer
539 views
Redirecting I/O in Xcode 4
I just installed Xcode 4 and I'm trying to redirect input from a file to my C++ program. I've tried using the usual "< infile.txt" in the "Arguments" section of my Run scheme, but that didn't work. ...
9
votes
6answers
1k views
Detect if parameter passed is an array? Javascript [closed]
Possible Duplicate:
How to detect if a variable is an array
I have a simple question:
How do I detect if a parameter passed to my javascript function is an array? I don't believe that I ...
9
votes
6answers
693 views
Named arguments as local variables in Ruby
I find myself constantly writing what I see as unnecessary code in Ruby when using named arguments for methods.
Take for example the following code:
def my_method(args)
orange = args[:orange]
...
9
votes
6answers
965 views
How to get the nth positional argument in bash?
How to get the nth positional argument in bash?
Thanks.
Edit: I forgot to say but I meant that n is a variable.
9
votes
1answer
3k views
getopt does not parse optional arguments to parameters
In C, getopt_long does not parse the optional arguments to command line parameters parameters.
When I run the program, the optional argument is not recognized like the example run below.
$ ./respond ...
8
votes
4answers
234 views
c++ passing arguments by reference and pointer
in c++
class bar
{
int i;
char b;
float d;
};
void foo ( bar arg );
void foo ( bar &arg );
void foo ( bar *arg );
this is a sample class/struct and functions
i have some Qs
...
8
votes
4answers
447 views
In C#, should one check references passed to methods against null?
Well, a few months ago I asked a similar question about C and C++, but I've been paying more attention to C# lately due to the whole "Windows Phone" thing.
So, in C#, should one bother to check ...
8
votes
2answers
228 views
Function/method argument validation standards
I was just inquiring about standard practices of argument validation syntax. I'm working with PHP as of currently, but anything that's considered a platform/language agnostic solution would be great.
...
8
votes
1answer
1k views
Converting an Ant fileset to multiple apply args
I have some files:
dir/foo.txt
dir/bar.txt
dir/foobar.txt
In an Ant apply task, I want to pass the list of files as arguments:
<target name="atask">
<apply executable="${cmd}" ...
8
votes
4answers
1k views
Difference between arguments/parameters in C#
What is the difference between an argument & a parameter in C#?
Are they the same thing?
8
votes
12answers
1k views
What are good arguments to convince management to upgrade to Delphi 2009 / 2010?
We have a medium-to-large size application. One version runs on Delphi 6 and another one on Delphi 2006.
One argument would be support for Unicode. We need that to cater to Customers around the ...