Tagged Questions
The ternary tag has no wiki summary.
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 ...
21
votes
9answers
688 views
Other ternary operators besides ternary conditional (?:)
The "ternary operator" expression is now almost equivalent to the ternary conditional operator:
condition ? trueExpression : falseExpression;
However, "ternary operator" only means that it takes ...
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 ...
7
votes
3answers
350 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 ...
6
votes
16answers
1k views
Is this a reasonable use of the ternary operator?
Are there any understanding / maintainability issues that result from code like
inVar1 == 0 ? NULL : v.push_back(inVar1);
inVar2 == 0 ? NULL : v.push_back(inVar2);
and so forth.
The possibly ...
5
votes
4answers
329 views
How to use C#'s ternary operator with two byte values?
There doesn't seem to be a way to use C#'s ternary operator on two bytes like so:
byte someByte = someBoolean ? 0 : 1;
That code currently fails to compile with "Cannot convert source type 'int' to ...
3
votes
2answers
66 views
Is there a better solution for this ternary condition?
Imagine the following ternary condition:
foreground = self.foreground if self.foreground else c4d.COLOR_TRANS
In this case, I need to call self.foreground twice just to check if it is True or not.
...
3
votes
0answers
129 views
Where can I find more information on the C/++ operators <?= and >?= [closed]
Possible Duplicate:
What does the >?= operator mean?
I was reading some C++ code and I saw the operators <?= and >?=. From their usage it appears that a <?= b is equivalent to a ...
3
votes
1answer
278 views
NHibernate ternary association with multiple values - how to map in a nice way
I've asked a similar question, but I've given up on the idea I had there to solve this problem so I would like some help solving this in a neat way instead.
I've got tables
Image - (Id, Name, ...
3
votes
2answers
312 views
Inline conditions in Lua (a == b ? “yes” : “no”)?
Is there anyway to use inline conditions in Lua?
Such as:
print("blah: " .. (a == true ? "blah" : "nahblah"))
3
votes
6answers
2k views
Multiple conditions in ternary operators
First off, the question is "Write a Java program to find the smallest of three numbers using ternary operators."
Here's my code:
class questionNine
{
public static void main(String args[])
{
...
3
votes
6answers
226 views
What's the Python equivalent of x = (10<n) ? 10 : n;
I was wondering what the equivalent in python to this would be:
n = 100
x = (10 < n) ? 10 : n;
print x;
For some reason this does not work in Python. I know I can use an if statement but I was ...
3
votes
2answers
184 views
Converting streaming data into ternary (base-3)
Given a clocked 3-level (-1,0,+1) channel between two devices, what is the most stream-efficient way to convert a stream of bits to and from the channel representation?
The current method is to ...
3
votes
2answers
785 views
java ternary hack
So I'm not going for maintainability or elegance here.. looking for a way to cut down on the total tokens in a method just for fun. The method is comprised of a long nested if-else construct and I've ...
2
votes
3answers
64 views
JS Ternary operator confusion
I'm learning about ternary operators now. I got the basics down, but then I saw this snippet and it doesn't make any sense to me. Can anyone please explain how is it put together?!
b.m & 4 || (c ...
2
votes
2answers
38 views
XSLT 1.0 Idiom for ternary if?
This Java program makes use of a Ternary if, to map booleans to output strings: (a "*" for true, an empty string for false).
public class ternary {
public static void main(String[] args) {
...
2
votes
5answers
183 views
How to create a ternary condition on a bit field in T-SQL
I have a SQLExpress table that includes a bit field for storing TRUE/FALSE state.
Something like:
+----+---------+
| ID | IsAlive |
+----+---------+
| 1 | 1 |
| 2 | 0 |
| 3 | NULL ...
2
votes
3answers
167 views
?? operator in system.DBNull
Is there an operator or built in function to simplyfy this:
myVal = object1.object2.something(a,b).dataColumn.toString()==""?object1.object2.something(a,b).dataColumn.toString():"-";
I know i can ...
2
votes
10answers
384 views
Should I replace all my if/else statements with ternary shorthand if/else? (PHP)
I was reading about ternary shorthand if/else and am wondering if it would make sense or be more beneficial to replace all (or most) of my traditional if/else statements with the ternary shorthand? ...
1
vote
0answers
43 views
.net component to draw ternary diagram?
For a winform application written in C# (4.0 for framework or less), we need to display data in a ternary diagram.
Do somebody know a graphical component written in C# that can be used? (open-source ...
1
vote
5answers
96 views
Two if statements using ternary condition
The title seems confusing but this is my first time using ternary conditions. I've read that ternary is meant to be used to make an inline if/else statement. Using no else is not possible. Is it true?
...
1
vote
7answers
567 views
How to write this ternary operator with jquery?
in this fiddle http://jsfiddle.net/mjmitche/6nar4/3/, if you drag, for example, the little blue box into the yellow box, then the big black box will turn pink. All of the 4 boxes along the left can be ...
1
vote
4answers
494 views
Javascript ternary operator and assignment
I get unexpected result for this simple JavaScript assignment statement:
var t = 1 == 1 ? 1 : 0;
undefined
I would have expected to get 1 assigned to v instead. Same result if you do
var t = (1 == ...
1
vote
5answers
919 views
return statement in ternary operator c++
I wrote the absolute function using ternary operator as follows
int abs(int a) {
a >=0 ? return a : return -a;
}
I get the following error messages
../src/templates.cpp: In function ‘int ...
1
vote
2answers
483 views
What does it mean? expr1 = expr2 Mod expr3 = 0
So I am porting a VBA application to PHP and ran into this wonderful little nugget of code:
expr1 = expr2 Mod expr3 = 0
I thought it was behaving like a ternary operator but when I broke it down to ...
0
votes
3answers
60 views
Weird ternary operator Javascript
I'm trying to understand how ternary operators work and I came across this example:
b.d >= mystr.length && (function1(b, a), a=0);
What does && mean? is it used like an AND ...
0
votes
1answer
18 views
Ternary relationships in coreData
Lets say I have entities Article, Page and Category.
I want entity Article to have a relationship like this.
Article (A1) has a category (C1) for page (P1), but I want the same article (A1) to have a ...
0
votes
3answers
80 views
Is there a way to not return a value from last part of a ternary operator
Is there a way to have the ternary operator do the same as this?:
if (SomeBool)
SomeStringProperty = SomeValue;
I could do this:
SomeStringProperty = someBool ? SomeValue : SomeStringProperty;
...
0
votes
1answer
92 views
Recursive ternary search in Java: Divide an array into three parts and search them recursively for a given element
I'm trying to implement a ternary search in a java array for a given element. At this point I get a StackOverflowError in the lower and upper thirds of the array, and an incorrect result in the middle ...
0
votes
2answers
88 views
I need a ternary operator in Java that assigns two variables if the condition is true
I have seen that one can use multiple ternary conditions, but haven't found a way to assign two variables if a single condition is true. This is the method I'm trying to write:
int[] chkNext(int ...
0
votes
2answers
55 views
PHP: Multiple statements in a ternary expression
I have a function that looks something like this:
function fun()
{
$pMana < 20 ? error(1) : $pMana -= 20;
//do stuff
}
I want when the error function is called, it also exits the function, ...
0
votes
2answers
91 views
Google closure compiler w/ ternaries: ERROR - inconsistent return type
So I have a helper namespace which I store helpful additions when developing JS. Now I plan to document them better and strengthen my JS with JsDoc and the help of Google Closure compiler. I got the ...
0
votes
5answers
161 views
Java calling method and using ternary operator and assign in the parameters?
I was reviewing some code and I came across this:
public static doSomething(String myString, String myString2) {
//Stuff
}
public static doAnotherThing(String myString) {
return ...
0
votes
6answers
148 views
Using return in ternary operator php
I'm trying to use return in a ternary operator, but receive an error:
Parse error: syntax error, unexpected T_RETURN
Here's the code:
$e = $this->return_errors();
(!$e) ? '' : return ...
0
votes
1answer
559 views
C Fast base convert from decimal to ternary
is there any method of changing decimal number to ternary ?
I mean i don't want to use modulo and divide method, i have very big decimal number, something like ...
0
votes
1answer
23 views
Are there any languages in which the ternary operator can be used to modify code structure?
I am curious to know if there are any languages in which the ternary operator can be used to modify code structure at run time. Such as:
boolean bool = true;
// Addition method - can add 2 or 3 ...
0
votes
4answers
105 views
Difference between PHP and JS evaluation of variables
Can someone please explain to me why the following javascript code produces an alert with 321 and the PHP code produces 1.
I know the PHP code evaluates the expression and returns true or false. ...
0
votes
3answers
229 views
How can I shorten this code using ternary operators?
I have the following piece of code
public class direction do(direction)
if(istrue) {
left = do(left);
} else {
right = do(right);
}
}
I was wondering if there is anyway ...
0
votes
1answer
296 views
hibernate: association with unmapped entity
table : map__company__branches (company_id int, branch_id int, is_primary_branch tinyint(1))
public class company
{
@ManyToMany(fetch = FetchType.LAZY)
@JoinTable(name = ...
0
votes
1answer
316 views
Entity Relationship Model: Ternary Relationships
I am trying to understand why this statement in the book is wrong: "given a C entity, there is at most one related A entity and at most one related B entity".
Is it that it doesn't apply to a ...
0
votes
3answers
235 views
What is a concise and robust way to write these statements in JavaScript?
I have an <iframe> that uses some variables that are set in an object literal in the parent document. These variables are optional; if they're set, I want to use their values, assigning them to ...
0
votes
2answers
1k views
Which ternary operator in C# is most popular and mostly used? [closed]
Which ternary operator in C# is most popular and mostly used?
0
votes
4answers
1k views
Ternary operator evaluation order
class Foo {
public:
explicit Foo(double item) : x(item) {}
operator double() {return x*2.0;}
private:
double x;
}
double TernaryTest(Foo& item) {
return some_condition ? item : 0;
}
...
0
votes
4answers
251 views
PHP ternary operator not working
The code below takes an array value, if it's key exist it should echo out it's value, the ternary if/else part works but the value is not showing up, can anyone figure out why it won't?
...
-1
votes
1answer
189 views
Ternary Operator in Gridview
I am looking to make this statement work in a VB.net page:
<asp:TemplateField HeaderStyle-CssClass="TableHeader" >
<ItemStyle Width="30px" />
<ItemTemplate>
<asp:CheckBox ...
-4
votes
1answer
45 views
Clarification on Ternary Shortenings involving Null in Java
This site: Information on the null constant in Java states that the following two statements are synonymous:
if(PossibleNullVariable!=null)PossibleNullVariable.Action();
...