Tagged Questions
Normally referring to the conditional operator, represented by the characters ? and :, that form a basic conditional expression in several programming languages, also known as inline if. It is used as follows: (condition) ? (value if true) : (value if false).
149
votes
8answers
36k views
Python Ternary Operator
I was under the impression that Python had a ternary operator...
But then I did some research,
Not enough to find out for sure though
Thought I'd ask the professionals ;)
118
votes
3answers
2k views
Return type of '?:' (ternary conditional operator)
Why does the first return a reference?
int x = 1;
int y = 2;
(x > y ? x : y) = 100;
While the second does not?
int x = 1;
long y = 2;
(x > y ? x : y) = 100;
Actually, the second did not ...
78
votes
7answers
2k views
Tricky ternary operator in Java - autoboxing
Let's look at the simple Java code in the following snippet:
final public class Main
{
private int temp()
{
return(true ? null : 0); // No compiler error - the compiler allows a ...
62
votes
55answers
4k views
To ternary or not to ternary?
I'm personally an advocate of the ternary operator: () ? : ; I do realize that it has its place, but I have come across many programmers that are completely against ever using it, and some that use ...
45
votes
2answers
17k views
Is there a conditional ternary operator in VB.NET?
In Perl (and other languages) a conditional ternary operator can be expressed like this:
my $foo = $bar = $buz ? $cat : $dog;
Is there a similar operator in VB.NET?
40
votes
6answers
32k views
Javascript Ternary operator
I cant seem to wrap my head around the first part of this code ( += ) in combination with the ternary operator.
h.className += h.className ? ' error' : 'error'
The way i think this code works is as ...
32
votes
3answers
570 views
Weird use of `?:` in `typeid` code
In one of the projects I'm working on, I'm seeing this code
struct Base {
virtual ~Base() { }
};
struct ClassX {
bool isHoldingDerivedObj() const {
return typeid(1 ? *m_basePtr : *m_basePtr) ...
32
votes
8answers
4k views
C# ?: Conditional Operator
I have this extract of C# 2.0 source code
object valueFromDatabase;
decimal result;
valueFromDatabase = DBNull.Value;
result = (decimal)(valueFromDatabase != DBNull.Value ? valueFromDatabase : 0);
...
28
votes
9answers
4k views
Nullable types and the ternary operator. Why won't this work?
Just came across a weird error:
private bool GetBoolValue()
{
//do some logic and return true or false
}
Then, in another method, something like this:
int? x = GetBoolValue() ? 10 : null;
...
24
votes
5answers
1k views
Java conditional operator ?: result type
I'm a bit puzzled about the conditional operator. Consider the following two lines:
Float f1 = false? 1.0f: null;
Float f2 = false? 1.0f: false? 1.0f: null;
Why does f1 become null and the second ...
24
votes
9answers
3k views
Unique ways to use the Null Coalescing operator
I know the standard way of using the Null coalescing operator in C# is to set default values.
string nobody = null;
string somebody = "Bob Saget";
string anybody = "";
anybody = nobody ?? "Mr. T"; ...
22
votes
9answers
1k views
C# Conditional Operator Not a Statement?
I have a simple little code fragment that is frustrating me:
HashSet<long> groupUIDs = new HashSet<long>();
groupUIDs.Add(uid)? unique++ : dupes++;
At compile time, it generates the ...
20
votes
16answers
2k views
Legible or not: C# multiple ternary operators + Throw if unmatched
Do you find the following C# code legible?
private bool CanExecuteAdd(string parameter) {
return
this.Script == null ? false
: parameter == "Step" ? true
: parameter == ...
20
votes
8answers
2k views
Is the conditional operator slow?
I was looking at some code with a huge switch statement and an if-else statement on each case and instantly felt the urge to optimize. As a good developer always should do I set out to get some hard ...
20
votes
3answers
3k views
Why is this code invalid in C#?
The following code will not compile:
string foo = "bar";
Object o = foo == null ? DBNull.Value : foo;
I get: Error 1 Type of conditional expression cannot be determined because there is no implicit ...
17
votes
3answers
991 views
?: operator PHP [closed]
Possible Duplicate:
What is the PHP ? : operator called and what does it do?
I saw this today in some PHP code.
$items = $items ?: $this->_handle->result('next', $this->_result, ...
15
votes
1answer
156 views
Why does the ternary operator unexpectedly cast integers?
I have seen it discussed somewhere that the following code results in obj being a Double, but that it prints 200.0 from the left hand side.
Object obj = true ? new Integer(200) : new Double(0.0);
...
15
votes
4answers
236 views
C++ ternary conditional and assignment operator precedence
I'm confused about direct assignment and ternary conditional operators precedence.
This code illustrates my confusion :
#include<stdio.h>
int main(void)
{
int j, k;
j = k = 0;
(1 ? ...
14
votes
2answers
335 views
Does the VB.NET “If” operator cause boxing?
Those of us who've worked in VB/VB.NET have seen code similar to this abomination:
Dim name As String = IIf(obj Is Nothing, "", obj.Name)
I say "abomination" for three simple reasons:
IIf is a ...
14
votes
15answers
4k views
Which coding style you use for ternary operator?
I keep it in single line, if it's short. Lately I've been using this style for longer or nested ternary operator expressions. A contrived example:
$value = ( $a == $b )
? 'true value # ...
13
votes
7answers
7k views
What does the question mark and the colon (?: ternary operator) mean in objective-c?
What does this line of code mean?
label.frame = (inPseudoEditMode) ? kLabelIndentedRect : kLabelRect;
The ? and : confuse me.
12
votes
2answers
615 views
In Java's ternary operator, can the first argument be evaluated even if the expression resulted in a false value?
I found an unusual bug in my code recently through random ad-hoc testing. So, I made a test case for it.
Here is my test case:
SampleRequest request = new SampleRequest();
request.setA(null);
...
12
votes
7answers
302 views
unusual ternary operation
I was asked to perform this operation of ternary operator use:
$test='one';
echo $test == 'one' ? 'one' : $test == 'two' ? 'two' : 'three';
Which prints two (checked using php).
I am still not ...
12
votes
8answers
463 views
What does “|=” operation mean in C++?
I have the following code and I can't understand what does it mean:
var1 |= var2>0 ? 1 : 2;
Anyone can help me please!
12
votes
3answers
4k views
Ruby ternary operator without else
Is there a ruby idiom for "If do-this," and "do-this" just as a simple command?
for example, I'm currently doing
object.method? a.action : nil
to leave the else clause empty, but I feel like ...
12
votes
14answers
4k views
What is the Java ?: operator called and what does it do?
I have been working with Java a couple of years, but up until recently I haven't run across this construct:
int count = isHere ? getHereCount(index) : getAwayCount(index);
This is probably a very ...
11
votes
5answers
1k views
Ternary operator VB vs C#: why resolves to integer and not integer?
I just shoot myself in the foot and would like to know whether there were actual reasons to make this situation possible.
And anyway, this question can stay for the convenience of the future foot ...
11
votes
7answers
4k views
Question mark in JavaScript
I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know)
hsb.s = max != 0 ? 255 * delta / max : 0;
I'm wondering if someone can explain what the ...
10
votes
1answer
153 views
Unexpected output when using a ternary operator and final variable
Consider this code snippet:
public static void main(String[] args) {
int z1 = 0;
final int z2 = 0;
System.out.println(false ? z1 : 'X');
System.out.println(false ? z2 : 'X');
}
When ...
10
votes
1answer
228 views
PHP Ternary operator clarification
I use the ternary operator quite often but I've not been able to find anything in the documentation about this and I've always wondered it.
The following is a possible example:
echo ...
10
votes
6answers
8k views
9
votes
3answers
223 views
Ternary operator typing
I implemented a ternary operator like Java's <condition> ? <if true> : <if false>, substituting / for :, since : is not a valid identifier:
case class Ternary[T](val o: Option[T]) {
...
9
votes
6answers
281 views
Can the conditional operator lead to less efficient code?
Can ?: lead to less efficient code compared to if/else when returning an object?
Foo if_else()
{
if (bla)
return Foo();
else
return something_convertible_to_Foo;
}
If bla is ...
9
votes
4answers
145 views
Conditionally assigning PHP values
For the very common case of assigning a value to a variable based on the outcome of an expression I'm a fan of ternary operators:
$foo = $bar ? $a : b;
However, if $bar is a relatively expensive ...
9
votes
5answers
206 views
Can you pass by reference while using the ternary operator?
Simple question, simple code. This works:
$x = &$_SESSION['foo'];
This does not:
$x = (isset($_SESSION['foo']))?&$_SESSION['foo']:false;
It throws PHP Parse error: syntax error, ...
9
votes
3answers
301 views
question about ? and : in c++
Why this statement :
int a = 7, b = 8, c = 0;
c = b>a?a>b?a++:b++:a++?b++:a--;
cout << c;
is not equal to :
int a = 7, b = 8, c = 0;
c = (b>a?(a>b?a++:b++):a++)?b++:a--;
cout ...
8
votes
2answers
155 views
Bizarre ternary operator behavior in debugger on x64 platform
I'm using a very simple ternary expression in my C# code:
helperClass.SomeData = helperClass.HasData ? GetSomeData() : GetSomeOtherData();
In both cases, the functions on each path of the ...
8
votes
6answers
407 views
Type result with conditional operator in C#
I am trying to use the conditional operator, but I am getting hung up on the type it thinks the result should be.
Below is an example that I have contrived to show the issue I am having:
class ...
8
votes
2answers
873 views
Lambdas and the ternary operator, weird issue
Ok, here's the deal. Generally, when using the ternary, here's the syntax:
int x = 6;
int y = x == 6 ? 5 : 9;
Nothing fancy, pretty straight forward right?
Now, let's try to use this when ...
7
votes
3answers
349 views
?: ternary conditional operator behaviour when leaving one expression empty
I was writing a console application that would try to "guess" a number by trial and error, it worked fine and all but it left me wondering about a certain part that I wrote absentmindedly,
The code ...
7
votes
12answers
3k views
Ternary Operator - Python
def val():
var = float(raw_input("Age:"))
status = ("Working","Retired")[var>65]
print "You should be:",status
I was looking on how the ternary operator is implemented in python. I ...
7
votes
6answers
737 views
Ternary operator associativity in C# - can I rely on it?
Ahh, don't you just love a good ternary abuse? :) Consider the following expression:
true ? true : true ? false : false
For those of you who are now utterly perplexed, I can tell you that this ...
7
votes
4answers
461 views
Are there any good reasons why ternaries in C# are limited?
Fails:
object o = ((1==2) ? 1 : "test");
Succeeds:
object o;
if (1 == 2)
{
o = 1;
}
else
{
o = "test";
}
The error in the first statement is:
Type of conditional expression cannot be ...
7
votes
9answers
670 views
How can I closely achieve ?: from C++/C# in Python?
In C# I could easily write the following:
string stringValue = string.IsNullOrEmpty( otherString ) ? defaultString : otherString;
Is there a quick way of doing the same thing in Python or am I ...
6
votes
2answers
123 views
Is There '?' Control Flow in Python?
Is there control flow operator similar to '?' of C/C++ in python?
If there is a chunk of code similar to this:
return n <= 1 ? n : fibo(n-1) + fibo(n-2)
Will got an error like this:
File ...
6
votes
1answer
281 views
Expressions in JavaScript Ternary Operator and JSLint
I recently received a comment on one of my blog posts about JSLint asking why JSLint threw an error with the following:
s === "test" ? MyFunc() : MyFunc2();
The error generated was:
"Expected ...
6
votes
4answers
243 views
How is the ternary operator evaluated in JavaScript?
Regarding the ternary (? :) operator in JavaScript, I would like to know how it is evaluated by a typical browser's JavaScript interpreter:
Alternative A:
Evaluate the first operand.
If the result ...
6
votes
9answers
2k views
Ternary operator ?: vs if…else
In C++, is the ?: operator faster than if()...else statements? Are there any differences between them in compiled code?
6
votes
6answers
700 views
Can I create ternary operators in C#?
I want to create a ternary operator for a < b < c which is a < b && b < c. or any other option you can think of that a < b > c and so on... I am a fan of my own shortform and I ...
5
votes
5answers
62 views
Javascript shorthand ternary operator
I know that in php 5.3 instead of using this redundant ternary operator syntax:
startingNum = startingNum ? startingNum : 1
...we can use a shorthand syntax for our ternary operators where ...