The conditional operator, represented by the characters ? and :, 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 ...
1
vote
1answer
51 views
Conditional-Operator in Constant Expression
I tried the following code snippet with MSVC 10, where it works fine.
enum
{
FOO = (sizeof(void*) == 8 ? 10 : 20)
};
int main()
{
return FOO;
}
What I would like to know is: Does the C++ ...
0
votes
2answers
10 views
IE Conditional operator: OR
I want to only include history and ajaxify if the browser is ie9 or greater, OR is not ie:
<!--[if gte IE 9]>
<script type="text/javascript" ...
-8
votes
1answer
91 views
C#/.NET Conditional operator gives back default value? .NET Bug? [closed]
i have found something strange in .NET.
I wrote this lines of code:
[TestFixture]
public class TestControllerStateComponent
{
public class Foo
{
public DateTime Dates { get; set; }
...
0
votes
1answer
34 views
PHP: Multiple conditions with NOT Equal (!=) operator is not working as expected
I’m working on a following code in which I want to use multiple php if conditions with multiple not operators (example is below).
But when I execute following php code,it always returns true (mean ...
3
votes
1answer
166 views
How can an array work with the conditional operator?
This is a retelling of my previous post, since I changed the question (so it probably didn't get flagged as a new question and was missed). I'll hopefully trim it down too.
I had functions like:
...
1
vote
1answer
30 views
Using an IF in a Mysql query
I have two tables with milions of records that I need to join to display results in different languages. I wish to create a view using a query with IF conditions but I'm not able to understand which ...
0
votes
1answer
28 views
php conditional operator not transient
I am having a bit of trouble wrapping my head around this, so I thought I will ask it..
I have this code:
$x="string";
var_dump($x==0); //says true
var_dump($x==true); //says true
var_dump(true==0); ...
0
votes
3answers
73 views
Conditional Operator: How much flexibility?
I would like to perform the following:
if(x == true)
{
// do this on behalf of x
// do this on behalf of x
// do this on behalf of x
}
Using a conditional operator, is this correct?
x ...
0
votes
1answer
26 views
How to end a statement in Ruby
I have code like
word.include?("test") ? @test = word : #do nothing
My issue is that rails expects something after the colon and treats the next line of code as if it's part of the conditional ...
2
votes
1answer
80 views
Can you throw within a conditional expression? (was: How can bounds-checking be extended to multiple dimensions?)
Note: I solved the original problem by realizing a completely different one. See the addendum for the new actual problem, but you can read the previous part for context.
This is an extension of one ...
-6
votes
4answers
43 views
Conditional operators in Objective C [closed]
Can we use conditional operators in objective C as like in the C++. I just tried to implement like this
(condition) ? true-statement : false-statement;
...
0
votes
1answer
41 views
Frequency of non-unique instances while conditioning on groups within and across data frames
I am analyzing employment data containing information about the firms that individuals worked for in a given year, with each year being a separate data frame.
I want to be able to quickly identify ...
0
votes
1answer
33 views
replace if statements by conditional operators in php variable
I need to change my PHP code from:
($a contains parsed text with html tags to which I want to append more data, checking if video links exist, append the echo statement)
$cont = ...
0
votes
4answers
71 views
PHP AND (&&), OR (||) prioritisation in conditional statements
Could someone please explain whether or not it is possible to merge a PHP If conditional statement (which contains say AND) with another OR one? And if so, how would one structure the syntax? Which ...
4
votes
4answers
59 views
conditional operator mixing a wrapped type and constant integer expression
I am getting things I don't expect in C#, when I combine as second and third operands of a conditional operator a narrower nullable and a wider numeric value. This DOES NOT WORK, but I find it does if ...
2
votes
2answers
68 views
Conditional function in APL
Is there a symbol or well-known idiom for the conditional function, in any of the APL dialects?
I'm sure I'm missing something, because it's such a basic language element. In other languages it's ...
2
votes
6answers
152 views
Conditional operator?
var discount = (i == 1) ? definition.SecondPetDiscount ?? definition.AdditionalPetDiscount :
(i == 2) ? definition.ThirdPetDiscount ?? definition.AdditionalPetDiscount :
...
0
votes
2answers
27 views
Querying embeded collections MongoDB imposing conditions(AND & OR)
I am trying to query an embeded collection and achieve following condition:
A && C || B && C || A && D || B && D
From what i understood referring to few tutorials, ...
2
votes
1answer
49 views
Checking an integer then returning a string
So I have a small snippet of code that I may use when I want to quickly check an integer before deciding what a string value will be:
string status = (statusID == 0 ? "Inactive" : "Active");
...
0
votes
1answer
109 views
Existential conditional assignment operators in Coffeescript
When reading the Coffeescript documentation, I was confused by the scant documentation on existential operators. The documentation states
It (?=) can also be used for safer conditional assignment ...
-1
votes
1answer
52 views
Excel Conditional Settings
I am trying to set some conditional settings values but it seems like they aren't taking.
When I look at the excel document, they are defaulted.
green = 0.2
yellow = 0.1
they are showing as
green ...
1
vote
4answers
113 views
PHP MySQL query with condition
I got stuck with a simple query which I can't figure out why isn't doing what I expect it to do. I have 3 values set on database like this:
$measure = 'kg';
$country_code = 'DE';
$weight = '5';
...
0
votes
1answer
143 views
asp.net c#: Where clause gets bypassed with OR condition in LINQ
Database: There are three tables in the database where IDs are int and Codes are string datatype. Exceptional with (countryId is string too).
Country(countryId, countryCode...)
Company(companyId, ...
0
votes
1answer
41 views
Error executing conditional statement in repeater
I am trying to execute following conditional code in a repeater:
<%# new MAINLIB.DbaseOps(null).getImage(Eval("desid").ToString())!=null?Response.Write("<img src='" + new ...
6
votes
2answers
82 views
Why the following Conditional Operator works strangely in StringBuilder containing Nullable type? in C#?
StringBuilder htmlResp=new StringBuilder();
int? cuID= 1;
string cuName="Tom";
string cuEmpID="ZXCV";
htmlResp .Append( "<option value=\"" + cuID.Value + "\">" + cuName+" ("+cuEmpID==""? ...
1
vote
4answers
79 views
What does this conditional operator do? [duplicate]
I'm not really sure how to interpret them and i'm still struggling to find out what they're exactly doing..
color = self.color2
color = self.fill1 if color == self.fill2 else self.fill2
what is ...
1
vote
2answers
83 views
How can I construct plural forms of words using Perl's ternary conditional operator?
I am having some trouble making statements involving chained ternary conditional operators.
Obviously I can write them the standard way, but it would be useful to know why they aren't working ...
0
votes
3answers
66 views
Java ternary (inline) operators: accesing comparation variables
In Java, i have an expression like the following:
return (a.getValue() > b.getValue()) ? a.getValue() : b.getValue();
When I was about 13 years old, i used to code in MSL (mIRC Scriptint ...
2
votes
2answers
94 views
Lvalue required error in C
my code is:
#include<stdio.h>
int main() {
int a=10, b;
a >= 5 ? b=100 : b=200;
printf("%d %d", a, b);
return 0;
}
Here comes a "Lvalue Required" in the line of conditional ...
0
votes
2answers
158 views
Return statement in conditional operator
I have a code segment as follows:
if(a < b)
{
x = y;
return w;
}
/* all unrelated variables above*/
x = something;
y = something;
/*both x and y from above*/
x and y are global ...
2
votes
2answers
57 views
Conditionally set a variable if it's NULL
When stepping through a sqlite3_stmt, I'd like to check against a return value of NULL rather than store it and check against the stored value.
Here's what I'm doing now:
char *email = (char ...
0
votes
3answers
61 views
Does ruby need ternary operator at all?
I made a small test today:
> false && 1 || 2
> 2
> true && 1 || 2
> 1
So if we could already do with binary operators, why did we need a ternary ?
> false ? 1 : 2
...
1
vote
1answer
72 views
ASP.NET - Change variable with conditional operator
Basically here is the main part of the code that contains the error:
...
var lname = Request["lastName"];
var comment = Request["comment"];
var sex = Request["sex"];
var title = "";
if(sex = ...
3
votes
3answers
119 views
Implicit conversion in C++
In C++, I'm trying to use implicit conversion with a conditional operator. Consider this example:
class MyFloat
{
public:
...
0
votes
5answers
120 views
What is the difference between these 2 statements?
Possible Duplicate:
C# ?: Conditional Operator
statement first:
if(dr["AskingPriceFrom"]!=System.DBNull.Value)
objFilters.AskingPriceFrom=Convert.ToDecimal(dr["AskingPriceFrom"]);
else
...
2
votes
3answers
113 views
Replace nested conditional operators with if/else in this block
What would this block look like using if/else statements instead of the ternary?
return value == null ? name.local ? attrNullNS : attrNull : typeof
value === "function" ? name.local ? ...
1
vote
1answer
107 views
Replace conditional operator with if/else automatically?
A specific JS parser (not in my control) does not understand nested conditional operator syntax like this:
return num === 1 ? condition ? condition : something : something;
Hence, I would like to ...
2
votes
2answers
255 views
Is there a Matlab conditional IF operator that can be placed INLINE like VBA's IIF
In VBA I can do the following:
A = B + IIF(C>0, C, 0)
so that if C>0 I get A=B+C and C<=0 I get A=B
Is there an operator or function that will let me do these conditionals inline in MATLAB ...
0
votes
1answer
235 views
Multiple conditions in jquery ternary conditional operator
I want to write ternary conditional operator in jquery where condition set by jquery variable. My script toggle's class for particular condition only.In my script variable comes from other settings.
...
-2
votes
2answers
336 views
PHP if/else shorthand notation - multiple conditions
Please consider the follwing code construction:
condition ? code_if_true :
condition2 ? code_if_true2 :
code_if_false;
This doesn't work for PHP whereas it does for JavaScript.
Is ...
0
votes
1answer
139 views
Can Resharper's code cleanup convert the conditional operator to if/then/else?
In the Cleanup code function, can Resharper convert all conditional operator statements to if/then/else?
Resharper 7.1
Edit(2):
Why? I don't like them. It is easier to read if/then/else statements.
...
0
votes
0answers
54 views
php conditional tag not working to change div class
Instead of creating a whole new template for this one page, I'm trying to work with conditional statements to change the div class so that the css will create a differently styled layout for it.
I ...
1
vote
3answers
84 views
Assignment operator and side effects with sequence points
I'm looking for some clarification for the emphasised line.
(C99 6.5.16/3) An assignment operator stores a value in the object
designated by the left operand. An assignment expression has the ...
-5
votes
1answer
84 views
Executing a conditional merge [closed]
I have a 2 data frames which are :
df1
Column1 Column2
A id1
B id2
C ...
5
votes
4answers
99 views
println does not print the expected value
This is my code:
public static void main(String[] arg)
{
String x = null;
String y = "10";
String z = "20";
System.out.println("This my first out put "+x==null?y:z);
x = "15";
...
0
votes
3answers
219 views
check whether an element exists using jQuery
I want to make the jquery working only when the particular #id or .class is available. i want to know which one is correct ??? please help... Thanks
if($().flexslider) {
//do something
}
or
if ( $( ...
2
votes
5answers
112 views
Ternary operation on dictionary
Is there a way to do a ternary operation on a dict where the test is has_key() without hitting the key error? i.e.
variable = dict["the_key"] if dict.has_key("the_key") else "something"
(this hits ...
0
votes
2answers
311 views
How to use conditional statement IF ELSE on property attribute
I want to show MyProperty1 or MyProperty2 based on MyPropertySelected. How to use a conditional statement if or else based on MyPropertySelected? Thanks.
// [Browsable(true)
// ????? conditional ...
0
votes
1answer
29 views
Throw error message doesn't compile on OOP Javascript ternary operators
Why does this way it compiles:
this.setAlunos = function(alunos){
if(this.getTurma() > 0){
this.alunos = alunos.split(",");
}
else{
throw "you must set a 'turma' before ...
1
vote
3answers
161 views
Is there any difference between '?:' and an if statement in objective c?
Is there a difference between using the '?:' conditional and the simple 'if-then-else' statement? Is it simply another way to do it, or does it actually use less space/take less time to read than ...




