An argument is usually defined as the actual value passed to a function, procedure, or command line program. This also refers to the Array-like `arguments` object in JavaScript.
0
votes
1answer
12 views
Can not pass a DBI::DatabaseHandle object as an argument to a ruby gem method
I'm new to ruby so forgive me in advance if this is a silly question. I've googled for answers but nothing relevant comes up and it seems the answer should be obvious.
I'm attempting to pass a ...
0
votes
1answer
8 views
Allowing a Form to Accept Cmd line arguments
I have an application that now has a settings file that can be loaded. One desired functionality I wish to give the user is the ability to double click the specific file type I have created and have ...
0
votes
1answer
52 views
Method with (void)sender as the first line [duplicate]
What does the (void)sender; do in following code? I am not able to understand what the use of that expression is.
- (IBAction)signIn:(id)sender {
(void)sender;
[self ...
0
votes
2answers
30 views
Parsing/passing command line arguments to a bash script - what is the difference between “$@” and “$*”?
I am using a bash script to call and execute a .jar file from any location without having to constantly enter it's explicit path.
The .jar requires additional variable parameters to be specified at ...
3
votes
2answers
59 views
How to pass a value in a return function as an argument on another function, use it in and then call it appropriately C++?
I would like to know how to pass a return function to another function as an argument so that I can use its value.
Example:
int childFunction(int a, int b)
{
int c;
c = a + b;
return c;
...
0
votes
2answers
69 views
What does a number argument in printf without quotes do?
What does a number argument in printf without quotes do?
e.g. printf( 3 + "goodbye"); results in output dbye. Why do I get this output?
1
vote
1answer
44 views
passing argument from incompatible pointer type
static struct dll_wifi_state **dll_states;
enum dll_type {
DLL_UNSUPPORTED,
DLL_ETHERNET,
DLL_WIFI
};
struct dll_state {
enum dll_type type;
union {
...
0
votes
0answers
10 views
Command line input to user input in Xcode - C++
I have a program that works off command line input (argc and argv) but I don't know how to do that as I'm using XCode. Is there any way for me to get the command line input as user input in the ...
-1
votes
1answer
62 views
returning a variable to a method from within a switch statement
For some reason i'm loosing access to my variables inside the switch statement,
I am not allowed to use any global variables.
import java.util.Scanner;
public class Projet {
public static ...
0
votes
1answer
7 views
how to dynamically download a file using struts 2 annotations (passing variable into annotation)
im new to struts 2 and im asking if there's a way to pass a variable argument into struts 2 annotation.
here is what i already did but with no luck
public class DownloadFileAction extends ...
0
votes
1answer
20 views
jQuery datatables filtering - the fifth parameter
I am using jQuery datatables in a small project I am working on. At this point I am just setting up some filtering functions to make the table more user friendly. The documentation for the filter ...
0
votes
1answer
15 views
Basic Syntax for passing a Scanner object as a Parameter in a Function
Here is what I wrote which is pretty basic :
import java.util.Scanner;
public class Projet {
/**
* @param args
* @param Scanner
*/
public static void main(String[] args) {
...
1
vote
6answers
50 views
(Python 2.7) Use a list as an argument in a function?
So I'm trying to learn Python using codecademy but I'm stuck. It's asking me to define a function that takes a list as an argument. This is the code I have:
# Write your function below!
def ...
0
votes
1answer
32 views
c++ Issue with passing ifstream argument in to header member method
This is my first question so pardon me if I don't look like I've done my homework regarding what I'm going to ask, i assure you I've scanned many internet pages for the answer.
I've been stuck with a ...
1
vote
4answers
75 views
Bash/Awk - Store in a variable part of one argument
For a given script I can supply one argument that has the following form:
-u[number][letter][...]
Examples: -u2T34T120F -u1T2T10F
Letters are either T or F, and the number is an integer number, ...
0
votes
2answers
55 views
How to make a generic map using template in C++
I am trying to create a generic map which will takeany datatype as its 2nd elelment.
But when I am trying create an object I am getting error as argument list for class template is missing
...
0
votes
1answer
26 views
QSignalMapper with signal argument and extra argument
I knew that QSignalMapper work well for the condition like this:
QSignalMapper *signalMapper = new QSignalMapper(this);
connect(signalMapper, SIGNAL(mapped(int)), this, SIGNAL(SetSlice(int)));
...
3
votes
4answers
50 views
How do functions use hash arguments in Ruby?
I saw hash arguments used in some library methods as I've been learning.
E.g.,
list.search(:titles, genre: 'jazz', duration_less_than: 270)
Can someone explain how a function uses arguments like ...
-2
votes
1answer
44 views
Multiple files as argument
I've written a script which should work on several files.
Example: At this moment, I do the following:
python code.py text1.txt depend1.txt depend2.txt
python code.py text2.txt depend1.txt ...
3
votes
5answers
68 views
Too many constructor arguments in deepest class of inheritance?
I want a general solution on how to avoid insanely high number of constructor arguments.
The examples I'm providing here are just examples, and I don't want a specific answer for the exact example ...
1
vote
1answer
21 views
C: Swap function with 3 arguments
I have a little question that is giving me and headache. What I need to do is reading a .txt file which has shuffled random numbers, save them into an array, and print them to the screen sortted (with ...
0
votes
1answer
22 views
CRM 2011: Check for reference value in custom workflow assembly
I'm using the part of a coding in a customer workflow assembly in CRM 2011:
[Input("Organization input")]
[Output("Organization output")]
[ReferenceTarget("organization")]
public ...
0
votes
2answers
46 views
How to use template when number of arguments are not known?
I have refered this link to meet my requirement .
But when I am trying to implement the same in my code, it is throwing an error.
template<typename T, typename... Args>
void fun(T t, Args... ...
0
votes
1answer
14 views
requirejs callback parameter is undefined
I'm just starting with require.js. Here's the simple code that I have in my main.js
require.config({
baseUrl: '/js',
});
require(['lib/jquery-min'], function(jq){
...
2
votes
2answers
65 views
How to use argument of a function as name of variable?
I have the feeling that this is trivial, and I apologize for asking such easy questions, but I would appreciate some help with the following problem: I have a function which requires two arguments:
...
-3
votes
1answer
29 views
how to use argument for add file to list in C# win app [closed]
I have a question. How can I add some files to a ListView when my software is running?
I don't want to run another process in my software to do that.
Edit:
I try to use argument in the main field in ...
0
votes
4answers
45 views
Manipulating tables in Oracle
Creating and using pl/sql proceedures which do not interact with data stored in a database are simple to make and execute, but of obvious limited use.
But I'm having some difficulty in manipulating ...
0
votes
1answer
32 views
Too many arguments to method call, expected 1, have 3
I am trying to get data from a JSON feed. The feed URL needs to be edited by my program so that it has the correct co-ordinates. But I keep on getting the error:
Too many arguments to method call, ...
0
votes
2answers
42 views
How to take a value from one jQuery function and assign it to a parameter of another function?
I have a function with a jQuery slider. It sets up a delay time and shows it in the "#slider" div :
$(function () {
$("#slider").slider({
range: 'max',
min: 1,
max: 5,
...
1
vote
2answers
32 views
JavaScript function arguments statements
My problem is:
(only as example, must not make sense overall):
// make a function and pass part of the statement as argument
function ExampleFunction( argument ) {
...
0
votes
2answers
36 views
How do I switch string arguments on main
I have a c program which should take the first argument and check which function matches it.
Example:
./test.o blabla
Code:
main(int argc, const char* argv) {
switch (argv[1]) {
case ...
0
votes
1answer
48 views
NameError: undefined local variable or method in irb
I am using ruby 1.9.2 with irb and I keep getting the following error message:
NameError: undefined local variable or method `ex1' for main:Object
from (irb):4
from ...
1
vote
1answer
16 views
Error: `Input argument “N” is undefined`, in simple matlab program
I have this tiny program in Matlab.
laMatriz.m
function k = laMatriz(X)
Y = 9;
A = zeros(X, Y);
for i=1:X
V = elVector(Y);
LimY = length(elVector);
for ...
0
votes
2answers
57 views
Python check for the number of output arguments a function is called with [duplicate]
Is there a way in python to check for the number of output arguments a function is called with from inside of the function being called?
For example:
a,b = Fun() #-> number of output arguments ...
0
votes
2answers
27 views
How can I pass input to a function, then have it use that input across 5 internal functions that are chaining each other?
This is essentially 2 questions I think.
How do I make all internal functions use the same raw_input?
How do I chain functions with that input?
I've been trying to make something that will make a ...
0
votes
2answers
32 views
Call Method With multiple arguments
To call a method with multiple arguments...my method name is getDataToDisplay. I have a compilation error.
+ (void) getDataToDisplay:(NSString *)dbPath :(NSString*)filter {
}
[LettureProve ...
1
vote
2answers
37 views
Decorator args and kwargs returned within tuple
I have the following decorator and class.
def auth(fn):
def check_headers(self):
print 'checking headers...'
#self.headers work done here
def inner(self, *args, **kwargs):
...
0
votes
4answers
69 views
Pass pointer array address to function and update data in the address
I am pretty weak in understanding and working with pointers. So, Please help me here.
My objective is to pass an array pointer's address to a function ,(i.e.) the address the pointer is pointing to, ...
1
vote
1answer
42 views
Invalid arguments in classes
char* n=m.getName();
I get the following error Invalid arguments ' Candidates are: char * getName() ' for the above instruction.What am I missing?
char* Medicine::getName()
{
return ...
2
votes
3answers
49 views
How to get ProcessStartInfo with arguments from a java process By using C#?
I am trying to get a java Process object by using C#.
The thing is i have several java Processes running on my computer.
Following is the way i chose to get Processes:
Process[] processes = ...
-1
votes
4answers
82 views
Why do people leave unused `String args[]` in Java? [duplicate]
When I see Java programs, many leave the String args[] on even though the program doesn't use them. Why is this? Anything in particular?
0
votes
1answer
41 views
Matlab Class Method: Too many arguments
I found some related questions, but didn't really find an answer in there.
I'm writing a simple little MATLAB class in order to learn OOP syntax in MATLAB. I'm very familiar with Python, and pulling ...
1
vote
5answers
67 views
Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?
Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
1
vote
2answers
26 views
Check if all parameters for a given function belong to the same class
I have a function like this:
// merge - merge two or more given trees and returns the resulting tree
function merge() {
if ($arguments = func_get_args()) {
$count = func_num_args();
...
0
votes
2answers
34 views
How do I modify a .html file to give hardcoded inputs to input fields every time?
I want to access my Powerschool (powerschool.avon.k12.ct.us), and I find the need to type in my password and username every time rather tedious. To try and fix this I downloaded the page's source in ...
3
votes
1answer
37 views
Why is f(arg, superfluous_arg) an ArgumentError but f (arg, superfluous_arg) a SyntaxError?
In Ruby 1.9.3, I have a function with a single argument. If I call it correctly, it works either with or without whitespace separating its name and parenthesis. If I pass an extra argument, it fails ...
2
votes
1answer
35 views
Escape list of JVM arguments in .bat file correctly
I have a bat-file in which I'm trying to pass the JVM a list of non proxy hosts via "-Dhttp.nonProxyHosts". The file already contains a list of arguments and if I try to just add the one in question ...
2
votes
1answer
78 views
“'BaseClass' does not contain a constructor that takes 0 arguments.” Partial C# / Protobuf class
I have a class MyDataRow which I derive from DataRow, here is my code:
public partial class MyDataRow : DataRow
{
internal MyDataRow(DataRowBuilder builder)
: base(builder)
{
...
-1
votes
0answers
39 views
passing char* argument to function in C
I have the following function:
void func(unsigned char* src,unsigned char* dest){
//do something with dest, using src
for(i=0;i<10;i++){
//print some dest values
}
}
I call this ...
1
vote
2answers
62 views
C++ difference in sending an array as a value/pointer
So I somehow got this to work, I am really interested as to why my first attempt failed.
I have informal experience with C, and am now trying to learn C++. I thought I would experiment with a few ...





