Tagged Questions
The args tag has no wiki summary.
36
votes
11answers
5k views
*args and **kwargs?
So I have difficulty with the concept of *args and **kwargs.
So far I have learned that:
*args = list of arguments -as positional arguments
**kwargs = dictionary - whose keys become separate ...
8
votes
0answers
237 views
Do Python's `*` and `**` specifiers have a name? [closed]
Possible Duplicate:
proper name for python * operator?
* is clearly used when unpacking an arbitrary number of arguments and
** is used when unpacking keyword arguments as a dictionary.
...
4
votes
4answers
2k views
Use of -noverify when launching java apps
I have seen many apps that take instrument classes and take -javaagent as a param when loading also put a '-noverify' to the commad line.
The java doc says that noverify turns off the class ...
3
votes
5answers
85 views
Why don't we get an error when we don't pass any command line arguments?
We can give parameter args[] to the main() method or choose not to. But if we would call any other parameterized method without passing enough arguments, it would give us an error.
Why it is not the ...
3
votes
4answers
416 views
int main(); C - java equivalent
I'm an University student and new to java. Last year, second semester we did some programming in C. I test a lot of stuff before truly understanding it. In C I only need to start with int main() to ...
3
votes
1answer
135 views
PHP equivalent of Python's func(*[args])
In Python I can do this:
def f(a, b, c):
print a, b, c
f(*[1, 2, 3])
How do you say this in PHP?
3
votes
3answers
949 views
C# string handling how get path and args from a string
I have a string with quotes around the path as follows:
"C:\Program Files (x86)\Windows Media Player\wmplayer.exe" arg1 arg2
If I use Text.Split(new Char[] { ' ' }, 2); then I get the first space.
...
3
votes
6answers
3k views
Can you have “ByRef” arguments in AS3 functions?
Any idea how to return multiple variables from a function in ActionScript 3?
Anything like VB.NET where you can have the input argument's variable modified (ByRef arguments)?
Sub do (ByRef inout As ...
2
votes
2answers
196 views
powershell: script with variable args
I want to start a script1.ps1 out of an other script with arguments stored in a variable.
$para = "-Name name -GUI -desc ""this is the description"" -dryrun"
. .\script1.ps1 $para
The args I ...
1
vote
3answers
133 views
Python command line script. Two scenarios of using. How to implement arguments parsing?
I have a python command line script that may be used in two different ways.
First scenario is like this:
script.py -max MAX -min MIN -delta DELTA
where -max and -min are required arguments and ...
1
vote
1answer
155 views
1
vote
2answers
142 views
What does wp_parse_args do?
I've been building Wordpress widgets for a while and have always used some code like this:
$instance = wp_parse_args( (array) $instance);
It's never caused problems and is recommended in several ...
1
vote
5answers
172 views
Using args.length instead of nums.length
I need to calculate the number of integers in an arg as well as calculate the average. Currently my code is the following with the problem in bold.
int count = args.length;
...
1
vote
2answers
69 views
accessing *args from within a function in Python
Hi everyone this is probably something extremely simple that i'm overlooking but can someone point me in the right direction for how to handle this problem.
def nodeFunction(self,*args):
...
1
vote
1answer
456 views
How to send a POJO as a callback param using PrimeFaces' RequestContext?
I can send callback param(s) and it works perfectly as long as I am only sending some primitive types like String. But the same thing does not work for even the simplest POJO. PrimeFaces guide says ...
1
vote
3answers
95 views
php function call default args
How to I make a call to a function where I want to use some default args and some some I pass in:
function genericlist (array $arr, string $name, [string $attribs = null],
[string $key = ...
1
vote
2answers
400 views
C++ passing command line arguments to dll
Environment: Windows XP SP3, Visual C++ 2010 Express, DLL Template
I am trying to pass command line arguments to my dll function
Example: "c:\Development>rundll32, getpage.dll,GetPage ...
1
vote
4answers
250 views
passing args when calling jquery function
hey, Im trying to make a call a jquery function and pass some args with it in the form of
$('#button').mouseenter(exampleFunction(arg1,arg2));
function exampleFunction(arg1,arg2)
The function ...
1
vote
1answer
135 views
Ruby's *args causing seg fault when no args supplied
I'm trying to do some scripted GUI testing in Windows using Ruby. I'm leveraging the guidance of a pragprog book and I'm hitting a bit of a snag. I've factored out some code to help with the ...
1
vote
4answers
158 views
Getting the Invocation Name Used in Java
I'm trying to find a generic way to replicate this C functionality:
int main(int argc, char** argv){
fprintf(2,"%s: error you did something wrong.\n", argv[0]);
return 1;
}
in java. So far ...
0
votes
0answers
43 views
Args supplied to a Java application in Eclipse [closed]
Possible Duplicate:
Invoking Java main method with parameters from Eclipse
In java, args[] are the list of command line arguments given to the application on startup. However when a program ...
0
votes
0answers
51 views
AsyncFileUpload - Custom return value
I am using AsyncFileUpload control of Ajax Control Toolkit so users can upload videos to server. Uploaded file is saved to database in UploadComplete server side event of AsyncFileUpload.
Now i need ...
0
votes
1answer
43 views
Which gives better performance-passing parsed URL as args alongwith request or parsing URL in view-Django
I have an Django application where the URL's to be handled shall have a specific pattern like /servername/alpha/beta/2/delta/10/pie/1
Now i will be be needing these parameters contained in the URL and ...
0
votes
0answers
46 views
Main method input file keeps giving me IndexOutOfBoundsException (even with right arguments)
I'm trying to use args[0] as an input file, but when I run the program, I keep getting an IndexOutOfBoundsException, although I'm quite sure that args[0] is the correct argument. I ran into this ...
0
votes
2answers
24 views
Using a String in run configurations as an argument and using it in an if-statement
The code below works as long as the argument in the run configuration equals "-output". But when the arguments are empty the compiler throws and ArrayOutOfBoundsException.
The point of this piece of ...
0
votes
2answers
43 views
How to pass quoted args to GNU Parallel
I need to pass some text that includes whitespace and other characters to a script that's being run by GNU Parallel.
Here is a very simple example:
$ seq 1 3 | parallel echo "Quoted ' (text)"
The ...
0
votes
1answer
62 views
Handling program args with Groovy Eclipse plugin v2
I am wondering how to handle program arguments when you are running Groovy within Eclipse. It isn't as straight forward as it is from the command line and I am having trouble figure it out. Im using ...
0
votes
2answers
122 views
Singleshot: SLOT with arguments
I have a strange problem. Here is my code:
def method1(self, arg1, delay=True):
"""This is a method class"""
def recall(arg1):
self.method1(arg1, delay=False)
...
0
votes
2answers
108 views
Java Beanshell scripting with args[] to the the program?
The Beanshell documentation implies that you can run a script using this format on the command line:
java bsh.Interpreter script.bsh [args]
The only problem with this is that I cannot get it to ...
0
votes
3answers
140 views
Parsing arguments to a Java command line program
What if I wanted to parse this:
java MyProgram -r opt1 -S opt2 arg1 arg2 arg3 arg4 --test -A opt3
And the result I want in my program is:
regular Java args[] of size=4
...
0
votes
3answers
102 views
Help using *args in tuple matching Python function
I am trying to build a function in python that yields values of two dictionaries IF a particular value from dict1 matches a particular value of dict2. My function looks like this:
def ...
0
votes
4answers
80 views
Print out a set of integers from args with the output: The numbers are 1, 2, 3, 4, 5
How do i print out a set of integers in an args array. I intend to have an output of: The numbers are 1, 2, 3, 4, 5
System.out.println("The numbers are ");
for(int i=0; i< args.length;i++)
...
0
votes
2answers
51 views
Maximum and Maximum difference of integers in args variable
I am writing a code that calculates the maximum number in my args variable as well as the largest difference between the highest and lowest integer in args.
Currently my code looks like this:
public ...
0
votes
3answers
65 views
Printing out all the integers in args array
How do i print out a set of integers from my args variable?
I tried
System.out.println("The numbers are " + args.length);
But all that does is print out the numbers in the array not the numbers ...
0
votes
1answer
155 views
How do you pass args to gmaven groovy:execute?
I need to pass in some args to a groovy script that is executed via the gmaven. I can do this no problem if I execute the script directly on the command line like so:
printArgs.groovy...
for (a in ...
0
votes
0answers
28 views
Can't access wordpress urls via native arguments when using clean permalinks
If i try to access my wordpress page using the native url structure i.e. for instance:
www.mywebsite.com/?p=123
I am redirected to my homepage. It doesn't seem to be an htaccess issue for I tried ...
0
votes
1answer
401 views
Python: Using *args, **kwargs in wrapper functions
I'm writing a wrapper function for Django's render_to_response() to add a CSRF processing.
The logic is:
def some_view (request)
dictionary = {'context_param': some_param}
...
0
votes
1answer
416 views
Set and require default Python script OptionParser
The following "parser.add_option" statements work but if the script is run without an option/arg it will not complain. If an option/argument are not specified I would like it to display help (-h / ...
0
votes
7answers
264 views
Remove successive 0th entries in args[] for a Java command line interface?
I recall seeing, somewhere, an example that stepped through String args[] by deleting the lowest numbered value(s)
public static void main( String args[]) {
while (args.length > 0 ) {
// ...
0
votes
1answer
90 views
Args error in main method for client-server program
Hi I have a client and server program, all the coding is done and compiles, the client has a GUI and the server is command line. The program uses sockets.
But when I run the client to connect to the ...
0
votes
3answers
107 views
How to simulate args inside a php file?
PHP file.php arg1 arg2
Now I want to hardcode arg1 and arg2 into file.php,how to do it?
0
votes
4answers
287 views
How to do apply in Tcl 8.4?
In Tcl 8.5 I can do something like this:
apply llength { 1 2 3 }
But that apply is not defined in v8.4.
How would I define apply using Tcl in v8.4?
I need this because I am converting some lisp ...
0
votes
2answers
125 views
in vim, how to combine ^] and arge, to follow a tag and also add it to the arg list?
I can get the word under the cursor with or , and I can use that to open a file and add it to the arg list. For example, with the cursor over a java class name, at line 45:
:arge +45 ...
-1
votes
2answers
88 views
file creation in user specified path
i want to have a xml file in the user specifed directory. for that i hav already created a file expert .
File file = new File("d:\Expert");
this is create the file export .xml at d:\ drive. ...
-1
votes
6answers
54 views
Is there a way to use more than 1 variable length arguments (*args) in a Python function?
I would like to create a function that uses two variable length arguments. For example:
def my_func(*args1, *args2):
for i in args1:
do stuff
for j in args2:
do stuff
Is ...
-1
votes
3answers
131 views
What does self do? [closed]
Possible Duplicate:
Python 'self' keyword
Forgive me if this is an incredibly noobish question, but I never did understand self in Python. What does it do? And when I see things ...
-2
votes
8answers
94 views
Difference between String[] and String
I was just wondering the difference between String[] and String in main method
public static void main(String[] args) {
VS
public static void main(String args) {
-8
votes
2answers
132 views
What does (String args []) mean?
I have this in the File.java:
public static void main(String args[]) throws Exception_Exception {
URL wsdlURL = CallSService.WSDL_LOCATION;
if (args.length > 0) {
File wsdlFile = ...