Tagged Questions
Parameters are a special kind of variables, used in a subroutine to refer to one/more of the pieces of data provided as input to the subroutine
242
votes
27answers
55k views
Is Java pass by reference?
I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone ...
196
votes
21answers
68k views
Parameterizing an SQL IN clause?
How do I parameterize a query containing an IN clause with a variable number of arguments, like this one?
select * from Tags
where Name in ('ruby','rails','scruffy','rubyonrails')
order by Count ...
88
votes
8answers
48k views
Does Java support default parameter values?
I came across some Java code that had the following structure:
public MyParameterizedFunction(String param1, int param2)
{
this(param1, param2, false);
}
public MyParameterizedFunction(String ...
50
votes
35answers
7k views
How many parameters are too many?
Routines can have parameters, that's no news. You can define as many parameters as you may need, but too many of them will make your routine difficult to understand and maintain.
Of course, you could ...
46
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?
37
votes
19answers
2k views
boolean parameters — do they smell?
I just found a bug caused by a boolean parameter... the caller thought it was controlling one thing but it was really controlling something else. So do boolean parameters smell in general? ...
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
5answers
12k views
How can I pass a parameter to a setTimeout() callback?
I have some JavaScript code that looks like:
function statechangedPostQuestion()
{
//alert("statechangedPostQuestion");
if (xmlhttp.readyState==4)
{
var topicId = xmlhttp.responseText;
...
27
votes
5answers
47k views
How do I pass multiple parameters in Objective-C?
I have read several of the post about Objective-C method syntax but I guess I don't understand multiple names for a method.
I'm trying to create a method called getBusStops with NSString and ...
27
votes
13answers
42k views
Adding a parameter to the URL with JavaScript
In a web application that makes use of AJAX calls, I need to submit a request but add a parameter to the end of the URL, for example:
Original URL:
http://server/myapp.php?id=10
Resulting URL:
...
26
votes
6answers
37k views
Change URL parameters with jQuery?
I have this URL:
site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc
what I need is to be able to change the 'rows' url param value to something i specify, ...
24
votes
1answer
8k views
ASP.NET MVC 3 client-side validation with parameters
Following on from this post Perform client side validation for custom attribute
I am trying to get my head around how to do this, passing additional parameters to the client-side script
As I ...
22
votes
7answers
2k views
C#: What is the use of “ref” for Reference-type variables?
I understand that if I pass a value-type (int, struct etc...) as a parameter (without the ref keyword), a copy of that variable is passed to the method, but if I use the ref keyword a reference to ...
20
votes
10answers
894 views
Where are C/C++ main function's parameters?
In C/C++, the main function receives parameters which is of type char*.
int main(int argc, char* argv[]){
return 0;
}
argv is array of char*, they point to strings. Where do these string locate? ...
19
votes
7answers
656 views
Is the use of `const` dogmatic or rational?
In Delphi you can speed up your code by passing parameters as const, e.g.
function A(const AStr: string): integer;
//or
function B(AStr: string): integer;
Suppose both functions have the same ...
19
votes
2answers
8k views
jqgrid with asp.net webmethod and json working with sorting, paging, searching and LINQ — but needs dynamic operators
THIS WORKS! .. but still needs one more thing...
Okay, so this is both a "comment" and question. First, is the working example that may help others in search of a asp.net webmethod / jqGrid approach. ...
19
votes
6answers
6k views
How can I read command line parameters from an R script?
I've got a R script for which I'd like to be able to supply several command-line parameters (rather than hardcode parameter values in the code itself). The script runs on Windows.
I can't find info ...
19
votes
7answers
5k views
C# UserControl constructor with parameters
Call me crazy, but I'm the type of guy that likes constructors with parameters (if needed), as opposed to a constructor with no parameters followed by setting properties. My thought process: if the ...
19
votes
4answers
727 views
Standard Library Containers with additional optional template parameters?
Having read the claim multiple times in articles - I want to add this question to Stackoverflow, and ask the community - is the following code portable?
template<template<typename T, typename ...
19
votes
4answers
12k views
Passing a dictionary to a function in python as keyword parameters
I'd like to call a function in python using a dictionary.
Here is some code:
d = dict(param='test')
def f(param):
print param
f(d)
This prints {'param': 'test'} but I'd like it to just print ...
19
votes
13answers
3k views
How many constructor arguments is too many?
Let's say you have a class called Customer, which contains the following fields:
UserName
Email
First Name
Last Name
Let's also say that according to your business logic, all Customer objects must ...
19
votes
9answers
10k views
pass by reference or pass by value?
When learning a new programming language, one of the possible roadblocks you might encounter is the question whether the language is, by default, pass-by-value or pass-by-reference
So here is my ...
18
votes
5answers
6k views
Use of “this” keyword in formal parameters for static methods in C#
I've come across several instances of C# code like the following:
public static int Foo(this MyClass arg)
I haven't been able to find an explanation of what the this keyword means in this case. Any ...
17
votes
8answers
749 views
How to differentiate two constructors with the same parameters?
Suppose we want two constructors for a class representing complex numbers:
Complex (double re, double img) // construct from cartesian coordinates
Complex (double A, double w) // construct from ...
17
votes
7answers
33k views
Get URL parameter with jQuery
I'm looking for a jQuery plugin that can get url parameters, and support this search string without outputting Javascript error: malformed URI sequence. If there isn't a jQuery plugin that supports ...
17
votes
6answers
114k views
Passing parameters to a JQuery function
I'm creating HTML with a loop that has a column for Action. That column
is a Hyperlink that when the user clicks calls a JavaScript
function and passes the parameters...
example:
<a href="#" ...
16
votes
6answers
591 views
Number of parameters for a constructor
I have a class that needs 12 parameters to be passed to its constructor. So I think that there is something wrong with the design of this class.
I would like to ask if there is any design pattern or ...
16
votes
3answers
3k views
In there a generic constructor with parameter constraint in C#
In C# you can put a constraint on a generic method like:
public class A {
public static void <T> Method (T a) where T : new() {
//...do something...
}
}
Is there also a way ...
16
votes
6answers
1k views
In C#, what happens when you call an extension method on a null object?
Does the method get called with a null value or does it give a null reference exception?
MyObject myObject = null;
myObject.MyExtensionMethod(); // <-- is this a null reference exception?
If ...
16
votes
4answers
9k views
Getting list of parameters inside python function
Is there an easy way to be inside a python function and get a list of the parameter names?
For example:
def func(a,b,c):
print magic_that_does_what_I_want()
>>> func()
['a','b','c']
...
16
votes
4answers
4k views
Parameterized Queries with LIKE and IN conditions
Parameterized Queries in .Net always look like this in the examples:
SqlCommand comm = new SqlCommand("SELECT * FROM Products WHERE Category_ID=@categoryid", conn);
...
15
votes
11answers
988 views
When is using the C# ref keyword ever a good idea?
The more I see ref used in production code, the more misuse I encounter and the more pain it causes me. I have come to hate this keyword, because from a framework-building standpoint, it seems silly. ...
15
votes
4answers
16k views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ...
15
votes
5answers
12k views
Get url parameters from a string in .NET
Okay, this is probably a simple one...
I've got a string in .NET which is actually a url. I want an easy way to get the value from a particular parameter.
Normally, I'd just use ...
14
votes
1answer
283 views
Purpose of static keyword in array parameter of function
While browsing some source code I came across a function like this:
void someFunction(char someArray[static 100])
{
// do something cool here
}
With some experimentation it appears other ...
14
votes
4answers
2k views
Can I get parameter names/values procedurally from the currently executing function?
I would like to do something like this:
public MyFunction(int integerParameter, string stringParameter){
//Do this:
LogParameters();
//Instead of this:
//Log.Debug("integerParameter: ...
14
votes
3answers
3k views
Python-like list comprehension in Java
Since Java doesn't allow passing methods as parameters, what trick do you use to implement Python like list comprehension in Java ?
I have a list (ArrayList) of Strings. I need to transform each ...
14
votes
10answers
9k views
Ignoring a NULL parameter in T-SQL
I want to be able to pass in a list of parameters, and ignore the ones which are NULL. So that the query is in effect pretending that the filter isn't there and ignoring it.
I was doing it like ...
14
votes
6answers
6k views
Mark parameters as NOT nullable in C#/.NET?
Is there a simple attribute or data contract that I can assign to a function parameter that prevents null from being passed in C#/.NET? Ideally this would also check at compile time to make sure the ...
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
3answers
3k views
varargs and the '…' argument
Consider the method declaration:
String.format(String, Object ...)
The Object ... argument is just a reference to an array of Objects. Is there a way to use this method with a reference to an ...
13
votes
3answers
758 views
Which overload will get selected for null in Java?
If I write this line in Java:
JOptionPane.showInputDialog(null, "Write something");
Which method will be called?
showInputDialog(Component parent, Object message)
showInputDialog(Object message, ...
13
votes
8answers
2k views
Is 'shift' evil for processing Perl subroutine parameters?
I'm frequently using shift to unpack function parameters:
sub my_sub {
my $self = shift;
my $params = shift;
....
}
However, many on my colleagues are preaching that shift is actually ...
13
votes
11answers
1k views
Why not infer template parameter from constructor?
my question today is pretty simple: why can't the compiler infer template parameters from class constructors, much as it can do from function parameters? For example, why couldn't the following code ...
13
votes
3answers
12k views
hitting the 2100 parameter limit (sql-server) when using Contains()
from f in CUSTOMERS
where depts.Contains(f.DEPT_ID)
select f.NAME
depts is a list (IEnumerable<int>) of department ids
this query works fine until you pass a large list (say around 3000 dept ...
13
votes
5answers
2k views
use decimal values as attribute params in c#?
I have been trying to use decimal values as params for a field attribute but i get a compiler error.
I found this blog post link saying it wasn't possible in .Net to use then, does anybody know why ...
13
votes
5answers
20k views
Display Parameter(Multi-value) in Report
Can anyone tell me how to display all the selected value of my multi value parameter in SSRS report. When giving parameter.value option it gives error.
Thanks in advance.
Suni
12
votes
5answers
502 views
Difference between parameter and argument
Is there a difference between a "parameter" and an "argument", or are they simply synonyms?
12
votes
9answers
1k views
When a method has too many parameters?
When debugging some web-service client code today (in Java, with jax-ws) I ran across a web-service method with the mind-blowing amount of 97 parameters!
I had to create a test case that calls this ...
12
votes
3answers
5k views
Python: Can a variable number of arguments be passed to a function?
In a similar way to using varargs in C or C++:
fn(a, b)
fn(a, b, c, d, ...)