Tagged Questions
Conditional has various meanings for various languages and probably should be avoided as a tag.
24
votes
10answers
20k views
Is it good practice to use the XOR (^) operator in Java for boolean checks?
I personally like the 'exclusive or' operator when it makes sense in context of boolean checks because of its conciseness. I much prefer to write
if (boolean1 ^ boolean2)
{
//do it
}
than
...
22
votes
5answers
20k views
How does “do something OR DIE()” work in PHP?
I'm writing a php app to access a MySQL database, and on a tutorial, it says something of the form
mysql_connect($host, $user, $pass) or die("could not connect");
How does PHP know that the ...
20
votes
23answers
2k views
Is it acceptable to only use the 'else' portion of an 'if-else' statement?
Sometimes, I feel like it is easier to check if all of the conditions are true, but then only handle the "other" situation.
I guess I sometimes feel that it is easier to know that something is valid, ...
18
votes
1answer
2k views
XAML Conditional Compilation
Is there an easy way to use the same conditional compilation symbol that I'm using for my c# code, in my xaml files?
18
votes
4answers
19k views
How do I use regular expressions in bash scripts?
I want to check if a variable has a valid year using a regular expression. Reading the bash manual I understand I could use the operator =~
Looking at the example below, I would expect to see "not ...
17
votes
17answers
2k views
Why would a language NOT use Short-circuit evaluation?
Why would a language NOT use Short-circuit evaluation? Are there any benefits of not using it?
I see that it could lead to some performances issues... is that true? Why?
Related question : ...
13
votes
4answers
742 views
Should I use Perl's conditional ? : operator as a switch / case statement or instead of if elsif?
Perl has a conditional operator that is the same a C's conditional operator.
To refresh, the conditional operator in C and in Perl is:
(test) ? (if test was true) : (if test was false)
and if ...
13
votes
10answers
2k views
Is if(var == true) faster than if(var != false)?
Pretty simple question. I know it would probably be a tiny optimization, but eventually you'll use enough if statements for it to matter.
EDIT: Thank you to those of you who have provided answers.
...
13
votes
7answers
5k views
MySQL Conditional Insert
I am having a difficult time forming a conditional INSERT
I have x_table with columns (instance, user, item) where instance ID is unique. I want to insert a new row only if the user already does not ...
12
votes
8answers
946 views
What is the PHP ? : operator called and what does it do?
Can someone please explain what the "?" and ":" operators are in PHP?
e.g.:
(($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER)
11
votes
11answers
1k views
Why does the code below return true only for a = 1?
Why does the code below return true only for a = 1?
main(){
int a = 10;
if (true == a)
cout<<"Why am I not getting executed";
}
11
votes
8answers
1k views
How do I write a While loop
How do you write the syntax for a While loop?
C#
int i = 0;
while (i != 10)
{
Console.WriteLine(i);
i++;
}
VB.Net
Dim i As Integer = 0
While i <> 10
Console.WriteLine(i)
i ...
11
votes
27answers
4k views
What's the “condition” in C interview question?
What is the answer to this C question:
What's the "condition" so that the following code
snippet prints both HelloWorld !
if "condition"
printf ("Hello");
else
printf("World");
10
votes
3answers
202 views
Is it possible to conditionally “use bigint” with Perl?
I know I can conditionally use a module in Perl but what about the "pragmas"? My tests have shown that use bigint can be much slower than normal math in Perl and I only need it to handle 64-bit ...
10
votes
11answers
8k views
SQL: Return “true” if list of records exists?
An alternative title might be:
Check for existence of multiple rows?
Using a combination of SQL and C# I want a method to return true if all products in a list exist in a table. If it can be done ...
10
votes
5answers
6k views
#ifdef #ifndef in Java
I doubt if there is a way to make compile-time conditions in Java like #ifdef #ifndef in C++.
My problem is that have an algorithm written in Java, and I have different running time improves to that ...
9
votes
5answers
2k views
C# and ASP.NET MVC: Using #if directive in a view
I've got a conditional compilation symbol I'm using called "RELEASE", that I indicated in my project's properties in Visual Studio. I want some particular CSS to be applied to elements when the ...
9
votes
4answers
498 views
Control statements in Haskell?
I am just beginning Haskell, but from all the online tutorials I've found I can't seem to find if there is one accepted way to do a conditional control statement. I have seen if-else, guards, and ...
9
votes
7answers
450 views
If vs Case statements
Are there any performance differences between using if-else and case statements when handling multiple conditions?
Which is preferred?
9
votes
1answer
841 views
C++ implicit conversion to bool
In an effort to make my enums more typesafe, I've been using macro-generated overloaded operators to disallow comparing enums against anything but an identically typed enum:
#include ...
8
votes
4answers
188 views
If-less programming (basically without conditionals)
I've had a colleague that told me he once worked for a company that had as a policy to never have conditionals ("if" and "switch" statements) in the code and that they let all the decisions in the ...
8
votes
10answers
631 views
Why doesn't null evaluate to false?
What is the reason null doesn't evaluate to false in conditionals?
I first thought about assignments to avoid the bug of using = instead of ==, but this could easily be disallowed by the compiler.
...
8
votes
4answers
318 views
In .NET, which is best, mystring.Length == 0 or mystring == string.Empty? [closed]
Possible Duplicate:
Checking for string contents? string Length Vs Empty String
In .NET, which is best,
if (mystring.Length == 0)
or
if (mystring == string.Empty)
It seems that these ...
8
votes
6answers
712 views
“Pythonic” equivalent for handling switch and multiple string compares
Alright, so my title sucked. An example works better:
input = 'check yahoo.com'
I want to parse input, using the first word as the "command", and the rest of the string as a parameter. Here's the ...
8
votes
9answers
2k views
Shorthand conditional in C# similar to SQL 'in' keyword
In C# is there a shorthand way to write this:
public static bool IsAllowed(int userID)
{
return (userID == Personnel.JohnDoe || userID == Personnel.JaneDoe ...);
}
Like:
public static bool ...
7
votes
2answers
120 views
If Statement True Block Executed When Condition is False
I optimized an extension method to compare two streams for equality (byte-for-byte) - knowing that this is a hot method I tried to optimize it as far as possible (the streams can reach into ...
7
votes
4answers
136 views
When should you check for errors using “if” , and when should you use exceptions?
When do you use each? I find that I'm using if's a lot more than exceptions. It seems like I'm catching the exceptions using my "ifs", before I even get them. There are ifs all over my code.
7
votes
3answers
298 views
PHP - if (condition) execution
let's say I have something like this:
if(1 == 0 && do_stuff()) {
...
}
Obviously 1 is not 0, so there's no point to check the other condition. So does PHP ever run do_stuff() ?
7
votes
5answers
667 views
Awk conditional sum from a CSV file
I have a CSV file from which I would like to extract some pieces of information: for each distinct value in one colum, I would like to compute the sum of the corresponding values in another column. ...
7
votes
6answers
208 views
JavaScript If statement condition with no operator? What does it do?
I am used to if statements having a condition where ( x < y ) or ( x == y ). But in cases where there is no operator, what does the if statement check exactly? i.e. in the example below if ...
7
votes
5answers
909 views
Replace conditional with polymorphism refactoring or similar?
I have tried to ask a variant of this question before. I got some helpful answers, but still nothing that felt quite right to me. It seems to me this shouldn't really be that hard a nut to crack, but ...
7
votes
10answers
710 views
Refactoring a complicated if-condition
Can anyone suggest best way to avoid most if conditions? I have below code, I want avoid most of cases if conditions, how to do it ? any solution is great help;
if ...
7
votes
4answers
234 views
Conditionally compiling entire namespaces - C#
I was wondering if there is a way to conditionally compile entire namespaces in C#. Or am I left with having to explicitly decorate each source file within the namespace with the preprocessor ...
7
votes
2answers
1k views
Conditional references in .NET project, possible to get rid of warning?
I have two references to a SQLite assembly, one for 32-bit and one for 64-bit, which looks like this (this is a test project to try to get rid of the warning, don't get hung up on the paths):
...
7
votes
5answers
2k views
How can I disable logging in Ruby on Rails on a per-action basis?
I have a Rails application which has an action which is invoked frequently enough to be inconvenient when I am developing, as it results in a lot of extra log output I don't care about. How can I get ...
7
votes
5answers
5k views
Ruby: builtin do … while?
Ruby has a wealth of conditional constructs, including if/unless, while/until etc.
The while block from C
while (condition) {
...
}
can be directly translated to Ruby:
while condition
...
6
votes
3answers
261 views
Limitations of the conditional operator ?:
I am using GCC 4.5 and have observed very peculiar behavior. I am wondering if there is something with this operator that I do not completely understand. I thought I was proficient in C++.
I have a ...
6
votes
4answers
339 views
How to implement conditional encapsulation in C#
I was wondering how one can conditionally hide data in class.
For instance , lets say I have a class called Car which has three fields :
Engine , MeterReading and Mileage.
I have three other ...
6
votes
2answers
232 views
What would be an example of an anaphoric conditional in Lisp?
What would be an example of an anaphoric conditional in Lisp? Please explain the code as well.
6
votes
7answers
367 views
Rewriting a conditional statement in Java
Say if I have the code below, it's bascially determining some condition is matched and then assign the boolean value, then run some codes. Then throw an exception if the booleanValue is false. What if ...
6
votes
6answers
213 views
does the condition after && always get evaluated
I have this if statement that tests for the 2 conditions below. The second one is a function `goodToGo() so I want to call it unless the first condition is already true
$value = 2239;
if ($value ...
6
votes
7answers
362 views
Elegant check for null and exit in C#
What is an elegant way of writing this?
if (lastSelection != null)
{
lastSelection.changeColor();
}
else
{
MessageBox.Show("No Selection Made");
return;
}
changeColor() is a void ...
6
votes
1answer
672 views
Conditional composite key in MySQL?
So I have this table with a composite key, basically 'userID'-'data' must be unique (see my other question http://stackoverflow.com/questions/2026379/sql-table-semi-unique-row)
However, I was ...
6
votes
1answer
5k views
WIX: Set a property based on a condition
This should be easy, but after several hours I’m coming up blank. ;(
I do a Registry Search (actually 2), because I need to check for either of 2 previous installs and then install my new files to ...
6
votes
6answers
866 views
Declaring and initializing a variable in a Conditional or Control statement in C++
In Stroustrup's The C++ Programming Language: Special Edition (3rd Ed), Stroustrup writes that the declaration and initialization of variables in the conditionals of control statements is not only ...
6
votes
11answers
3k views
Mathematically Find Max Value without Conditional Comparison
----------Updated ------------
codymanix and moonshadow have been a big help thus far. I was able to solve my problem using the equations and instead of using right shift I divided by 29. Because ...
6
votes
7answers
23k views
Noob SQL Q: How do I combine 2 select statements into one?
I am a noob when it comes to SQL syntax.
I have a table with lots of rows and columns of course :P
Lets say it looks like this:
AAA BBB CCC DDD
-----------------------
Row1 | 1 A D X
...
6
votes
3answers
566 views
Using set.insert( key ) as a conditional?
I am trying to use set.insert (key) as a conditional, where if the key is inserted correctly (meaning that the key does NOT already exsist in the set ) then it should go on and perform some kind of ...
5
votes
4answers
122 views
Is (4 > y > 1) a valid statement in C++? How do you evaluate it if so?
Is that a valid expression? If so, can you rewrite it so that it makes more sense? For example, is it the same as (4 > y && y > 1)? How do you evaluate chained logical operators?
5
votes
1answer
92 views
how to do conditional replacing using vim
I want to replace word with WORD, but only on the lines which start with -. Anybody knows how to do it?