51
votes
16answers
9k views
Parameterizing a 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 …
43
votes
21answers
7k 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 …
20
votes
5answers
570 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?
20
votes
8answers
1k 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 …
19
votes
31answers
2k 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 …
14
votes
19answers
923 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? …
10
votes
4answers
175 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 …
10
votes
9answers
3k 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 …
9
votes
8answers
616 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 …
9
votes
3answers
276 views
Is it possible to make a parameter implement two interfaces?
Is it possible to define a function that takes in a parameter that must implement two interfaces?
(The two interfaces are ones I just remembered off the top of my head; not the ones I want to use)
…
8
votes
2answers
166 views
What Perl modules are useful for validating subroutine arguments?
I'm looking for a general-purpose module to take the drudgery out of validating subroutine and method arguments. I've scanned through various possibilities on CPAN: Params::Validate, Params::Smart, …
8
votes
10answers
1k views
Is there a difference between Perl’s shift versus assignment from @_ for subroutine parameters?
Let us ignore for a moment Damian Conway's best practice of no more than three positional parameters for any given subroutine.
Is there any difference between the two examples below in regards to …
7
votes
3answers
108 views
Which overload will get selected for null in Java?
Hello,
If I write this line in Java:
JOptionPane.showInputDialog(null, "Write something");
Witch method will be called?
showInputDialog(Component parent, Object message)
showInputDialog(Object …
7
votes
6answers
1k 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 …
7
votes
2answers
260 views
Ruby on Rails: what does “equals” symbol mean as a parameter?
Some open source I've been using has the below line as a function declaration:
def parse_query(query=nil, options={}, models=nil)
What effect do the "equals" symbols have on the statement? Does it …
