Tagged Questions

The conditional operator, represented by the character ?, is a ternary operator that is part of the syntax for a basic conditional expression in several programming languages. It is also commonly referred to as the ternary operator or inline if. It is used as follows: (condition) ? (value if true) : (value if false).

learn more… | top users | synonyms (1)

117
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 ...
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 ...
30
votes
3answers
1k views

Booleans, conditional operators and autoboxing

Why does this throw NPE public static void main(String[] args) throws Exception { Boolean b = true ? returnsNull() : false; // NPE on this line. System.out.println(b); } public static ...
29
votes
5answers
2k views

Why does the Perl conditional operator not do what I expect?

This snippet of Perl code in my program is giving the wrong result. $condition ? $a = 2 : $a = 3 ; print $a; No matter what the value of $condition is, the output is always 3, how come? Edit: I ...
25
votes
3answers
920 views

Conditional operator cannot cast implicitly?

I'm a little stumped by this little C# quirk: Given variables: Boolean aBoolValue; Byte aByteValue; The following compiles: if (aBoolValue) aByteValue = 1; else aByteValue = 0; But ...
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 ...
21
votes
3answers
329 views

Pointer conversion issue with Ternary operator

I know the ternary operator has some surprising restrictions, but I was a bit baffled that this fails to compile for me: void foo(bool b) { int* ptr = ((b) ? NULL : NULL); } Obviously that's ...
20
votes
14answers
2k views

Benefits of using the conditional ?: (ternary) operator

I'm currently a student in college learning, and for the most part enjoying, the wonderful world of programming. I'm lucky enough to know about SO, and have a friend who's been in the game since he ...
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 ...
19
votes
7answers
761 views

why do we prefer ? to ?? operator in c#?

I recently found that we can use ?? operator to check nulls. Please check the below code samples: var res = data ?? new data(); This is exactly similar to var res = (data==null) ? new ...
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); ...
14
votes
21answers
1k views

Are multiple conditional operators in this situation a good idea?

I just saw this block of code on the Wikipedia article on conditional operators: Vehicle new_vehicle = arg == 'B' ? bus : arg == 'A' ? airplane : arg ...
14
votes
4answers
3k views

Nullable type issue with ?: Conditional Operator

Could someone explain why this works in C#.NET 2.0: Nullable<DateTime> foo; if (true) foo = null; else foo = new DateTime(0); ...but this doesn't: Nullable<DateTime> foo; foo ...
13
votes
3answers
1k views

Conditional operator differences between C and C++

I read somewhere that the ?: operator in C is slightly different in C++, that there's some source code that works differently in both languages. Unfortunately, I can't find the text anywhere. Does ...
12
votes
9answers
1k views

Is there, or is there ever going to be, a conditional operator in Delphi?

I kept my hands off Delphi for too long, I guess; busied myself with Java and PHP a lot over the last couple of years. Now, when I got back to doing a little Delphi job, I realised I really miss the ...
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)
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 ...
12
votes
4answers
2k views

Conditional operator assignment with Nullable<value> types?

EmployeeNumber = string.IsNullOrEmpty(employeeNumberTextBox.Text) ? null : Convert.ToInt32(employeeNumberTextBox.Text), I often find myself wanting to do things like this ...
11
votes
9answers
492 views

Using true and false as the expressions in a conditional operation

I'm maintaining some code and have found the following pattern a lot: var isMale = (row["Gender"].ToString() == "M") ? true : false; instead of this: var isMale = (row["Gender"].ToString() == ...
11
votes
2answers
942 views

Why doesn't Java have compound assignment versions of the conditional-and and conditional-or operators? (&&=, ||=)

So for binary operators on booleans, Java has &, |, ^, && and ||. Let's summarize what they do briefly here: JLS 15.22.2 Boolean Logical Operators &, ^, and | JLS 15.23 ...
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
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 ...
9
votes
5answers
6k views

Conditional Operators in Javascript

Is it ok to use conditional operators like a statement like so? (x == y) ? alert("yo!") : alert("meh!"); Or is it more correct to use it to assign a value like so? z = (x == y) ? "yo!" : "meh!"; ...
9
votes
5answers
3k views

In C# why can't a conditional operator implicitly cast to a nullable type

I am curious as to why an implicit cast fails in... int? someValue = SomeCondition ? ResultOfSomeCalc() : null; and why I have to perform an explicit cast instead int? someValue = SomeCondition ? ...
8
votes
4answers
253 views

Why does this throw a null reference exception?

This will throw a null reference exception when InnerException is null. String s = " inner exception: " + e.InnerException == null ? "None" : e.InnerException.Message; but this won't: String s = ...
8
votes
6answers
2k views

C# if-null-then-null expression

Just for curiosity/convenience: C# provides two cool conditional expression features I know of: string trimmed = (input == null) ? null : input.Trim(); and string trimmed = (input ?? "").Trim(); ...
8
votes
7answers
397 views

C++ Conditional Operator

I once seen a -wired- operator in C++ which assigns value if greater than.. it was a combination of ?, < and = e.g. let x = value if value is greater than x I do not mean x=(x<value)x:value ...
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
9answers
742 views

Use of conditional operator to select which object calls a particular method?

I have two collections, and items that are added to one or the other of those collections based on whether some criteria is met. Somewhat inadvertantly, I stumbled on the fact that it is legal to ...
7
votes
5answers
161 views

Weird behaviour with conditional operator in .Net

This has me pretty stumped. Maybe I'm too tired right now. Rectangle rectangle = new Rectangle(0, 0, image.Width, image.Height); Rectangle cropArea = inputArea == null ? rectangle : ...
7
votes
3answers
346 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
4answers
568 views

CSS “and” and “or”

I've got quite big trouble, because i need to anathematise from styling some input types. I had something like: .registration_form_right input:not([type="radio") { //Nah. } But i don't want to ...
7
votes
7answers
377 views

Compiler error using C# conditional operator

I can't seem to find what I need on google, and bet I'll get quick answer here. String str; bool b = true; b ? str="true" : str="false"; Console.Out.WriteLine(str); that ? : syntax ...
6
votes
3answers
91 views

Compiler error for conditional operator “?:” when used with typecasting operator

Following code is in simplest form: struct X { operator char () const { return 'a'; } }; int main () { X obj, *p = &obj; char a = *p; // ok char c = (true)? *p : 'z'; } This code ...
6
votes
5answers
74 views

Omitting the second part of the ternary operator

Given the following expression: $att['menutext'] = isset($attrib_in['i_menu_text']) ? : $this->getID(); If it evaluates to true, will $att['menutext'] be set to true or $this->getID()?
6
votes
3answers
205 views

What else does the condition operator in C++ do for me?

I have got a strange compile error while using condition operator. a,b are int value, and the following expression get compile error. (a>b)?( std::cout << a ) : ( b=MAX ); 16 (b ...
6
votes
5answers
534 views

Short circuiting statement evaluation — is this guaranteed? [C#]

Quick question here about short-circuiting statements in C#. With an if statement like this: if (MyObject.MyArray.Count == 0 || MyObject.MyArray[0].SomeValue == 0) { //.... } Is it guaranteed ...
6
votes
1answer
441 views

Java ?: operator in vb.net

Is there a ?: operator equivalent in .net? eg in java I can do: retParts[0] = (emailParts.length > 0) ? emailParts[0] : ""; rather than if (emailParts.length > 0) { retParts[0] = ...
6
votes
3answers
589 views

Conditional operator issue

I'm having some trouble with using the conditional operator to get a reference to an object. I have the a setup similar to this: class D { virtual void bla() = 0; }; class D1 : public D { ...
5
votes
3answers
90 views

Python version of C#'s conditional operator (?)

I saw this question but it uses the ?? operator as a null check, I want to use it as a bool true/false test. I have this code in Python: if self.trait == self.spouse.trait: trait = self.trait ...
5
votes
4answers
257 views

How can i write multiple statement using conditional operator

I am writing conditional operator in place of if else . But i my case i have multiple statements as following if (condition) { statement 1; statement 2; } else { statement 3; ...
5
votes
9answers
774 views

What are these called [closed]

Possible Duplicate: What does ‘?’ do in C++? What are these kind of statements in c++ called: testNumber > 1 ? true : false;
5
votes
4answers
293 views

Conditional operator in if-statement?

I've written the following if-statement in Java: if(methodName.equals("set" + this.name) || isBoolean() ? methodName.equals("is" + this.name) : methodName.equals("get" + ...
5
votes
8answers
678 views

Can every if-else construct be replaced by an equivalent conditional expression?

(I don't have a serious need for this answer, I am just inquisitive.) Can every if-else construct be replaced by an equivalent conditional expression using the conditional operator ?:?
5
votes
6answers
3k views

if(condition, then, else) in Oracle

MySQL/MSSQL has a neat little inline if function you can use within queries to detect null values, as shown below. SELECT ... foo.a_field AS "a_field", SELECT if(foo.bar is null, 0, foo.bar) AS ...
5
votes
8answers
2k views

C# conditional AND (&&) OR (||) precedence

We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same ...
5
votes
14answers
7k views

The ternary (conditional) operator in C

What is the need for the conditional operator? Functionally it is redundant, since it implements an if-else construct. If the conditional operator is more efficient than the equivalent if-else ...
5
votes
5answers
1k views

How do I use the conditional operator?

I've always wondered how to write the "A ? B : C" syntax in a C++ compatible language. I think it works something like: (Pseudo code) If A > B C = A Else C = B Will any veteran C++ ...

1 2 3 4