Tagged Questions
The condition tag has no wiki summary.
44
votes
8answers
2k views
In a “for” statement, should I use `!=` or `<`?
I've seen both of these two for statements:
for(i=0;i<10;i++)
for(i=0;i!=10;i++)
I know they all stop when i reaches 10 , but it seems better to use the second one (I heard).
What is the ...
33
votes
6answers
1k views
why -3==~2 in C#
Unable to understand. Why output is "equal"
code:
if (-3 == ~2)
Console.WriteLine("equal");
else
Console.WriteLine("not equal");
output:
equal
23
votes
9answers
803 views
Combining multiple conditional expressions in C#
In C#, instead of doing if(index == 7 || index == 8), is there a way to combine them? I'm thinking of something like if(index == (7, 8)).
21
votes
15answers
3k views
Why Switch/Case and not If/Else If?
This question in mainly pointed at C/C++, but I guess other languages are relevant as well.
I can't understand why is switch/case still being used instead of if/else if. It seems to me much like ...
11
votes
8answers
17k views
Can you use if/else conditions in CSS?
I would like to use conditions in my CSS.
The idea is that I have a variable that I replace when the site is run to generate the right style-sheet.
I want it so that according to this variable the ...
11
votes
2answers
3k views
Java Concurrency Techniques
Here are two chunks of code that accomplish (what I think is) the same thing.
I basically am trying to learn how to use Java 1.5's concurrency to get away from Thread.sleep(long). The first example ...
10
votes
6answers
362 views
Condition checking vs. Exception handling
When is exception handling more preferable than condition checking? There are many situations where I can choose using one or the other.
For example, this is a summing function which uses a custom ...
10
votes
8answers
3k views
Why would you use an assignment in a condition?
In many languages assignments are legal in conditions. I never understood the reason behind this. Why would you write:
if (var1 = var2) {
...
}
instead of:
var1 = var2;
if (var1) {
...
}
8
votes
3answers
2k views
Wait on multiple condition variables on Linux without unnecessary sleeps?
I'm writing a latency sensitive app that in effect wants to wait on multiple condition variables at once. I've read before of several ways to get this functionality on Linux (apparently this is ...
8
votes
8answers
381 views
What is the best coding practice for if conditions?
Many years of coding have brought me to believe and try to reach this kind of if conditional coding: (demonstrated in C, but it's relevant almost to any language)
if(a <= 0)
return false;
...
7
votes
3answers
165 views
Solving equations in .NET
I'm trying to solve some simple equations in .NET. I came across Math.NET and evaluate it.
The Solver() methods seemed to be what I need but I can't figure out how to use side conditions with this ...
7
votes
4answers
244 views
given a set of conditions, algorithmically determine only one can be True
Given a set of two or more logical conditions, is it possible to algorithmically determine that exactly ONE of them will evaluate to TRUE? For example:
# this should pass, since for every X, only one ...
7
votes
4answers
5k views
LaTeX \newcommand default argument: is empty?
I'm trying to write a simple example command that prints nothing without an argument, but with an argument it surrounds it with something.
I've read that the default value should be \@empty and the ...
7
votes
1answer
8k views
How to use conditions in features in WiX?
I am trying to make simple windows intaller and I don't know how to deal with this.
I have two features - feature1 and feature2. I want feature2 to be installed only if the user selected feature1 to ...
7
votes
6answers
927 views
Remove repetitive, hard coded loops and conditions in C#
I have a class that compares 2 instances of the same objects, and generates a list of their differences. This is done by looping through the key collections and filling a set of other collections ...
6
votes
2answers
80 views
Is there a way to use the condition of an If statement as its value?
This could be a simple question, but it's one I've never seen answered before. Is there a way to use an if statement's condition as its value? This would be really useful in cases where lots of ...
6
votes
8answers
466 views
Ways to Find a Race Condition
I have a bit of code with a race condition in it... I know that it is a race condition because it does not happen consistently, and it seems to happen more often on dual core machines.
It never ...
6
votes
12answers
331 views
Which is the preferred condition in loop?
int n = 5;
for(int i = 0;i!=n;i++)//condition !=
{
//executing 5times
}
int n = 5;
for(int i = 0;i<n;i++)//condition <
{
//executing 5times
}
Which one is preferred?
This was example ...
5
votes
2answers
131 views
SQL : First condition in OR statement in JOIN is always executed first?
In SQL Server, I've the following design:
Is it 100% sure that the first condition from the OR statement in a JOIN will be executed first ? So that the following SQL statement will result in the ...
5
votes
3answers
174 views
How can I store a PHP conditional staement in the database for later use?
In our current application I have a report that contains something like:
if($foo == 3 || $bar > 3) {
$e = someFunction();
};
but for a different client that same expression might be:
...
5
votes
1answer
89 views
PHP: Condition Format - (6 == $var) or ($var == 6)?
I was browsing these PHP Coding Guidelines (a bit outdated but very interesting), and found this:
Condition Format
Always put the constant on the left hand side of an
equality/inequality ...
5
votes
2answers
99 views
Is there an sql condition that can look for non integers in a column?
Basically I would like a select statement that would function like this
SELECT *
FROM table
WHERE column IS NOT INT
Is there a condition like this or how do you check for non-integers in an ...
5
votes
3answers
248 views
If block vs Switch-Case block
Generally is there a performance difference between using an if block with many else ifs compared to a switch case block? Do some languages or style conventions prefer one over the other?
...
5
votes
3answers
120 views
Problem in a php if condition
I have a small problem. I access the site thru foro.php?id=74&mode=add or foro.php?id=74&mode=edit it works fine.. But when I add a colon, semicolon (; or :) to foro.php?id=74&mode=add it ...
5
votes
2answers
238 views
Common Lisp condition system for transfer of control
I'll admit right up front that the following is a pretty terrible description of what I want to do. Apologies in advance. Please ask questions to help me explain. :-)
I've written ETLs (Extract, ...
5
votes
2answers
3k views
Condition Binding Attribute Not Working?
I've been struggling with this code for some time now and can't seem to find any complete answers to my question. I've created a small sample to illustrate the problem:
<ListView >
...
5
votes
4answers
2k views
Does CouchDB support multiple range queries?
How are multiple range queries implemented in CouchDB? For a single range condition, startkey and endkey combination works fine, but the same thing is not working with a multiple range condition.
My ...
4
votes
1answer
51 views
Condition within GROUP_CONCAT()
Guys I have the following tables in my DB
locations
id (primary key)
name
projects
id (primary key)
location_id (foreign key => locations)
projectname
milestones
id (primary key)
name
...
4
votes
6answers
413 views
Can this C/C++ if() statement ever evaluate to TRUE?
According to PC-lint, the following statement will never be TRUE:
if((variable & 0x02) == 1)
I am using a C compiler for embedded systems that evaluates it to TRUE whenever the corresponding ...
4
votes
2answers
73 views
Is the “condition” of a for loop called each time for Iterables?
Lets say I have the following code:
for (Object obj : Node.getIterable()) {
//Do something to object here
}
and Node.getIterable() returns an iterable. Does the getIterable() function get ...
4
votes
3answers
136 views
Select points within a circular area in Mathematica
Please consider :
dalist = {{9, 6}, {5, 6}, {6, 0}, {0, 5}, {10, 8}, {1, 2}, {10, 4}, {1, 1}, {7, 7},
{6, 8}, {5, 3}, {6, 10}, {7, 4}, {1, 8}, {10, 0}, {10, 7}, {6, 3}, {4, 0},
...
4
votes
3answers
93 views
Converting a string to a condition in Ruby
I actually have a string called "cond". This is the content of that string:
"20 < 50"
I would like to insert it into a condition like this: (example)
if 20 < 50
return "Hello"
But that ...
4
votes
2answers
158 views
what does if(); means in php
It happens that, when writing some PHP code, I accidentally put a semicolon ; right after an if statement i.e.:
if($a > 1);
{
....
}
I thought that PHP should rise an error in this case, but ...
4
votes
1answer
87 views
condition of tuple of integers
how do I write a concise/neat boolean condition to test if all the integers in a tuple are in a given range? Something like
0 < (1,2,3) < 50
would be perfect - of course that doesn't work ...
4
votes
4answers
2k views
PHP boolean to string with modification & a condition
When echoing a boolean (true or false), PHP converts it to 1 or <nothing> and displays it. e.g.:
$x = true; echo $x; //displays: 1
$x = false; echo $x; //displays: <nothing>
My ...
4
votes
5answers
455 views
Empty while loop not checking condition
In a multithreaded C++ program, I have the equivalent of this running in one thread:
while(obj->member) { } // waiting for obj->member to be set to false in another thread
and in another ...
4
votes
2answers
173 views
How to use SQL conditional statements
I need to delete a row based upon the value in a column while executing an update query. Here is the code:
UPDATE tag SET tag_count = tag_count - 1 WHERE tag_id = 1
IF tag_count < 1
delete from ...
4
votes
6answers
748 views
jQuery condition for animation
Hey all,
am brand new to javascript and jQuery so this question might seem dumb but i couldnt find any exemple or doc on it.
I got this function for a little color animation roll-over and roll-out ...
4
votes
3answers
1k views
Rails virtual attribute search or sql combined column search
I have a user model with attributes 'first' and 'last'
So for example
User.first.first #=> "Charlie"
User.first.last #=> "Brown"
This User model also has a virtual attribute 'full_name'
#user.rb
def ...
4
votes
1answer
10k views
Ant (1.6.5) - How to set two properties in one <condition> or <if>
I am trying to assign two different strings to two different variables dependent on two booleans in Ant.
Pseudocode (ish):
if(condition)
if(property1 == null)
property2 = string1;
...
4
votes
3answers
646 views
Condition Synchronization
Please could someone explain condition synchronization to me?
Having a hard time finding an example that explains itself well enough due to rubbish lecturing material.
An example would be greatly ...
3
votes
2answers
79 views
Declared but unset variable evaluates as true?
I was doing a simple calculator with the following code. Right now it executes perfectly. When I tried to change things around, however, it doesn't work. I used BOOL program to check whether to ...
3
votes
2answers
76 views
Java int equality inconsistency? [closed]
This is driving me insane because it completely violates my attempts to de-buggify it:
int k = keyCode; //keyCode being a variable declared by a keyPress
//in the Processing library
//k and keyCode ...
3
votes
6answers
51 views
A mysql query: couple of conditions matching in the same column
I have this table named "events" in my mysql database:
+-----+-----------+------------------------------+------------+
| ID | CATEGORY | NAME | TYPE |
...
3
votes
3answers
55 views
T-SQL Dynamic Where Condition
I have a stored procedure and would like to know if its possible to build up a dynamic where condition based on a parameter.
Lets say I have this query:
SELECT *
FROM tbl_Users
Now I have a ...
3
votes
2answers
92 views
querying WHERE condition to character length?
i have a database whit a large number of words but i what to select only those records that character length are equal to a given number(in example case 3):
$query = ("SELECT * FROM $db WHERE ...
3
votes
4answers
185 views
Check if some object in ArrayList fulfills some condition
I have an ArrayList<Person> persons. I want to check if some person in persons fulfills a condition. Like: person.isFemale()
Instead of looping the list, is there any nicer way to perform ...
3
votes
2answers
182 views
Managing AJAX control loading sequence on a page
I think I am experiencing race conditions with an AJAX web application. I am using JQuery 1.4.4 to handle the AJAX requests.
I have a menu control/class that the user clicks to display controls for ...
3
votes
1answer
97 views
IN Clause with NULL or IS NULL
Postgres is the database
Can I use a NULL value for a IN clause? example:
SELECT *
FROM tbl_name
WHERE id_field IN ('value1', 'value2', 'value3', NULL)
I want to limit to these four values.
I ...
3
votes
9answers
415 views
javascript: using a condition in switch case
Sorry for that dumb question.
How can I use a condition for a case in the javascript switch-case language element?
Like in the example below, a case should match when the variable liCount is <=5 ...