1
vote
7answers
98 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 …
6
votes
5answers
262 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 tel …
5
votes
4answers
253 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 …
26
votes
29answers
1k 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 …
0
votes
5answers
128 views
javascript if alternative
what does this bit of code represent? I know its some kind of if alternative syntax ..
pattern.Gotoccurance.score != null ? pattern.Gotoccurance.score : '0'
tnx
QUESTION UPDATE …
1
vote
7answers
181 views
How to use ternary operator for this statement in c#
int five = 5;
when the variable five is equal to 5, write true
when the variable five is not equal to 5, write false
How do I write a statement for this in ASP.NET using C# …
0
votes
2answers
160 views
Which ternary operator in C# is most popular and mostly used? [closed]
Which ternary operator in C# is most popular and mostly used?
1
vote
3answers
66 views
No implicit int -> short conversion in ternary statement
short s;
s = (EitherTrueOrFalse()) ? 0 : 1;
This fails with:
error CS0266: Cannot implicitly
convert type 'int' to 'short'. An
explicit conversion exists (are you
missi …
3
votes
4answers
50 views
Comparison of conditional statements.
Are following ways are same.(Considering the evaluation time)
if(Condition1)
{
//code1
}
else
{
//code2
}
condition1 ? code1 : code2
Are they just synt …
1
vote
4answers
56 views
PHP syntax question
I found this line of code and I'm trying to comprehend what it's doing. The part I'm not familiar with is the question mark and the colon. What are these characters used for?
$str …
0
votes
5answers
99 views
Do ternary operators tend to bug / defect injection?
A discussion has come up in my office about the use of ternary operators. There are two sides to this discussion.
Side 1) That ternary operators are easy to write and read, theref …
-6
votes
2answers
138 views
What does question mark in PHP represent other than Ternary Operator?
Is there any other use of the question mark ? in PHP other than being part as the Ternary Operator.
Just to take note: I know about how it works in regex and all that. I am talkin …
5
votes
9answers
367 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 …
5
votes
6answers
228 views
Learning by example - terminology (?, :, etc)
When you were a kid, did you ever ask your parents how to spell something and they told you to go look it up? My first impression was always, "well if could look it up I wouldnt n …
-4
votes
9answers
255 views
PHP ternary operator (short if statement) help
Hay All, I've converting a lot of my code to the short hand IF statement to cut down loading time/code.
Most of these have been IF statements with ELSE's. However i can see to get …
