Tagged Questions
The conditional-statements 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 ...
12
votes
9answers
599 views
How much does the order of case labels affect the efficiency of switch statements?
Consider:
if (condition1)
{
// Code block 1
}
else
{
// Code block 2
}
If I know that condition1 will be true the majority of the time, then I should code the logic as written, instead of:
...
10
votes
5answers
266 views
Pointer dereferencing overhead vs branching / conditional statements
In heavy loops, such as ones found in game applications, there could be many factors that decide what part of the loop body is executed (for example, a character object will be updated differently ...
8
votes
12answers
316 views
If statements in a function what is the best way
If I have a function with a ton of conditionals what is the best way to organize it?
What I am worried about is someone else coming into the code and understanding what is going on. Even though ...
6
votes
3answers
111 views
String compare on a bool
I'm pretty sure this is a simple fundamental flaw in my newb PHP knowledge, but I was surprised when the following happened:
$result (what's being returned by my method) passes the IF statement. ...
6
votes
8answers
5k views
Javascript switch vs. if…else if…else
Guys I have a couple of questions:
Is there a performance difference in Javascript between a switch statement and an if...else if....else?
If so why?
Is the behavior of switch and if...else ...
5
votes
7answers
363 views
Most readable way to write simple conditional check
What would be the most readable/best way to write a multiple conditional check such as shown below?
Two possibilities that I could think of (this is Java but the language really doesn't matter here):
...
4
votes
3answers
101 views
IF… OR IF… in a windows batch file
Is there a way to write an IF OR IF conditional statement in a windows batch-file?
For example:
IF [%var%] == [1] OR IF [%var%] == [2] ECHO TRUE
4
votes
3answers
84 views
Simulating conditionals
How can we code conditional behavior without using if or ? (ternary operator) ?
One idea comes to mind:
for(;boolean_expression;) {
// our code
break;
}
Any others ?
4
votes
5answers
338 views
Replace branch statements by bit-shifting operations
I'm writing an image binarization algorithm which simply converts each pixel's luminance value (grayscale image) to a black or white. Currently the algorithm for binarizing each pixel is roughly this
...
4
votes
3answers
5k views
Using conditional statements inside 'expect'
I need to automate logging into a TELNET session using expect, but I need to take care of multiple passwords for the same username.
Here's the flow I need to create:
Open TELNET session to an IP
...
3
votes
3answers
2k views
Rails - Create if record doesn't exist or else update…Whats Best way to do this?
I have a create statement for some models but its creating a record within a join table regardless if the record exist. Here is what my code looks like.
@user = User.find(current_user)
@event = ...
3
votes
1answer
97 views
is it possible to have a conditional field in an anonymous type
i have some code that looks like this and creates a list from an existing collection
var items = items.ConvertAll(r => new
{
description = FormatDescription(r),
...
2
votes
5answers
106 views
Java: If statement in infinite while loop
I am new to Java and the following might be obvious, but it is puzzling to me. Consider the following code:
while(1>0){
if(x!=0){
//do something
}
}
The x variable is changed in a ...
2
votes
4answers
107 views
C# !Conditional attribute?
Does C# have a not Conditional (!Conditional, NotConditional, Conditional(!)) attribute?
i know C# has a Conditional attribute:
[Conditional("ShowDebugString")]
public static void ...
2
votes
2answers
154 views
C# inline conditional in string[] array
How could you do the following inline conditional for a string[] array in C#. Based on a parameter, I'd like to include a set of strings...or not. This question is a followup of this one on ...
2
votes
2answers
31 views
MySQL Query with a Conditional Max Value
This might be obscure but I want to set a max value on an integer in one of my queries. Basically if the value rawsentiment is greater than 500, I just want to have it be 500 but if its less, than I ...
2
votes
3answers
61 views
PHP $_POST Validation
Is there a quick and easy way to check if any of my $_POST data has the same value?
I need it as a conditional statement...
Example:
$week1 = $_POST['Week_1'];
$week2 = $_POST['Week_2'];
$week3 = ...
2
votes
3answers
397 views
how to use “if” statements inside pipeline
I'm trying to use if inside a pipeline.
I know that there is where (alias ?) filter, but what if I want activate a filter only if a certain condition is satisfied?
I mean, for example:
...
2
votes
1answer
75 views
How to execute a callback when the result of a logical statement changes?
With jquery is it possible to have a function being fired as soon as a conditional statement turns from false to true?
I am looking for a solution that does not consume all the system's resources ...
2
votes
3answers
94 views
optimizing conditional statement in sql
select Item
into #transferTheseItems
from IDTable where id = @myCondition
if exists (select 1 from #transferTheseItems)
/*
insert this huge data to a remote database over linked server
*/
although ...
2
votes
5answers
175 views
Neatest/most idiomatic way to rewrite this If in C#
I have this if-else statement which does what I want. What it's doing is pretty straightforward as you should be able to tell.
if (width != null && height != null)
{
if (top != null ...
2
votes
2answers
392 views
Should I create multiple OpenCL kernels to avoid conditional statements?
In OpenCL, I have a kernel that needs to operate on complex and real data. I could put a conditional statement in that calls the right line of code to handle this, or I could have two kernels that I ...
2
votes
1answer
141 views
C# Allow user to enter conditional rules
I write code in isolation, that is I work for myself. I need some advice on how you might implement the following functionality or if there are some tools that already exist to help make this task ...
2
votes
7answers
137 views
Practice of checking 'trueness' or 'equality' in conditional statements - does it really make sense?
I remember many years back, when I was in school, one of my computer science teachers taught us that it was better to check for 'trueness' or 'equality' of a condition and not the negative stuff like ...
2
votes
10answers
2k views
What is the difference between an IF, CASE, and WHILE statement
I just want to know what the difference between all the conditional statements in objective-c and which one is faster and lighter.
2
votes
3answers
4k views
How to use the & operator in C#? Is the the translation of the code correct?
the line "if(arg2 & 1)" in C++(arg2 is DWORD) is equal to "if(arg2 & 1==0)" in C#(arg2 is Uint32),right?
I am trying to translate a function from C++ to C#,but I get an error:
Operator ...
1
vote
5answers
56 views
Difference between “true == isset($variable)” and “isset($variable) == true” in php
I was just wandering the about the concept of equating the condition in PHP that is,
what could be the difference between
true == isset($variable)
and
isset($variable) == true
?
1
vote
0answers
27 views
Single Q/A Per Page (Conditional) Workflow Application
I'm currently working with students who have ADHD and am trying to set up a system (preferably a website) that takes a decision tree we have made (exported to OPML) and displays it one question per ...
1
vote
5answers
139 views
Declaring an implicitly typed variable inside conditional scope and using it outside
In the simplified code below,
if(city == "New York City")
{
var MyObject = from x in MyEFTable
where x.CostOfLiving == "VERY HIGH"
select x.*;
}
else
{
...
1
vote
1answer
28 views
MySQL on duplicate key update without updating the recorded row
I read about the MySQL command ON DUPLICATE KEY UPDATE. I have a column Surnames in a Users table. Since there must be no identical surnames, I want to INSERT a new surname when the surname isn't in ...
1
vote
1answer
34 views
IE displays its conditional comments error
Has anyone else had this problem? I can find absolutely nothing when I search for an answer. I have a conditional comment in my html to only display a flash file when the browser is IE. And it ...
1
vote
0answers
63 views
Can I use conditional statements with EJS templates (in JMVC)?
and if yes, what is the syntax?
My goal is to prepend an 's' to the word 'comment' when there is more than one. in an jQuery.ejs template in a JMVC app. The following breaks. I can't find any docs for ...
1
vote
2answers
110 views
CSS conditional statement for alternating row color (start at last row?)
Minor cosmetic issue.. I am in the process of developing a forum based site with dynamic PHP tables that include headers and footers. I currently have a CSS conditional statement for alternating ...
1
vote
1answer
45 views
Age-based Conditional Statements in Rails 3
--still learning rails here.. I want to write a conditional statement such as:
if variable.created_at.method_for_checking_if_older_than(10 minutes)
#code
end
What statement or method can i ...
1
vote
6answers
206 views
If statement for strings in python?
I am a total beginner and have been looking at http://en.wikibooks.org/wiki/Python_Programming/Conditional_Statements but I can not understand the problem here. It is pretty simple, if the user enters ...
1
vote
5answers
114 views
javascript conditional statement using &&
I am attempting to change the state of a button if all of three specific elements have a specific class applied.
Previously I was simply counting the number of li's with the class "complete" but now ...
1
vote
4answers
103 views
Conditional Statement in JavaScript
In C#.Net, We would use Conditional Statement like this below:
string Place = TextBox1.Text == "" ? "School" : TextBox1.Text;
How to use Conditional Statement in JavaScript. I am assigning one ...
1
vote
1answer
164 views
SQlite conditional order
I have this query:
select id,number,name
from objects
order by case number when 0 then 1 else -1 end asc
The database is a database of objects with numbers. If an object doesn't have a ...
1
vote
1answer
256 views
Triggering jquery with css media queries
I am using css media queries on my project to create a site that will work with any sized screen. I am looking to trigger difference jquery functions just like I would with css.
For example, If the ...
1
vote
3answers
91 views
Stuck with a particular SQL statement which is not working at all
I am stuck with a particular SQL statement which is not working at all. I have been troubleshooting it, but I get error messages which are simple but I AM not able to fix it.
However, I am not able ...
1
vote
1answer
186 views
Creating multiple if else statements
Need help from a developer. I'm using an if else statement in my wordpress theme to render two different kinds of single post templates. Now I have to add another template. The present code is:
$post ...
1
vote
2answers
184 views
How to use conditional columns values in the same select statement?
I have something like
(COMPLEX_EXPRESSION_N stands for a long subquery)
select
ID_Operation,
FirstCheck = CASE WHEN (COMPLEX_EXPRESSION_1)= 0 then 0 else 1 end,
SecondCheck = CASE WHEN ...
1
vote
3answers
623 views
Select Case Fall through with Not Condition in VB.NET
How to Add Not condition in the below select case.
Is <> works for single value, and 'To' works for a Range but the value are specific values there are not series of numbers. Is it possible to use ...
1
vote
2answers
377 views
Jquery — hasClass in if statement not playing nicely
I hope i'm not doing something silly here but I'm sure I understand this alright. Here's my code:
<body class="someClass">Hi</body>
if($(body).hasClass("someClass")){
alert("yo");
}
...
1
vote
2answers
76 views
Absolutely-DRY conditionals in a language that doesn't allow goto?
How do you fake conditionals that don't nest in a language that doesn't allow goto? I want to do the following:
if (condition1)
action1;
if (!condition1 && condition2)
action2;
if ...
1
vote
3answers
91 views
Python, Conditionals - Are these equivalent?
if config == 'H/2' or 'H' or '2H': pass
if config == 'H/2' or config == 'H' or config == '2H': pass
1
vote
2answers
110 views
jQuery conditional for opacity?
How do you test for whether a div has opacity = 0?
I have tried:
if (jQuery("#slideshow div#prev").css({opacity: 0}))
{
jQuery("#slideshow div#prev").animate({opacity: 1.0}, 500);
}
but ...
1
vote
1answer
229 views
Conditional statement in databound expression
I want to display an image if 2 conditions are met.
The data item is not null
The value of the data item is greater than 0
Markup
<img id="Img1" runat="server" visible='<%#IIF( ...
1
vote
1answer
239 views
Using MYSQL conditional statements and variables within a query
Hi just cant seem to construct the MYSQL query Im after.
Say I have a result of two columns: 1) browser name and 2) browser count.
Where it gets complicated is I want once 90% of the total count has ...