Tagged Questions
The comparison-operators tag has no wiki summary.
67
votes
2answers
28k views
Difference between == and === in JavaScript [closed]
Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
What is the difference between == and === in JavaScript? I have also seen != and !== ...
41
votes
8answers
1k views
27
votes
2answers
3k views
Ruby spaceship operator <=>
What is the Ruby spaceship operator? Is the operator implemented by any other languages?
26
votes
3answers
593 views
Is JavaScript's double equals (==) symmetric?
There are many cases in which JavaScript's type-coercing equality operator is not transitive. (See, for instance, JavaScript equality transitivity is weird....) But are there any cases in which it ...
17
votes
3answers
566 views
Why is “!=” Used with Iterators?
I'm used to writing loops like this:
for (std::size_t Index = 0; Index < Foo.Size(); Index++)
{
// Do stuff with Foo[Index].
}
But when I see iterator loops in others' code, they look like ...
17
votes
11answers
935 views
C# Nullable Equality Operations, Why does null <= null resolve as false? [closed]
Possible Duplicate:
Why does >= return false when == returns true for null values?
Why is it that in .NET
null >= null
resolves as false, but
null == null
resolves as true?
...
9
votes
1answer
459 views
JavaScript equality transitivity is weird
I've been reading Douglas Crawford's JavaScript: The Good Parts and I came across this weird example that doesn't make sense to me:
'' == '0' // false
0 == '' // true
0 == '0' ...
9
votes
9answers
376 views
The importance of using === instead of == in php!
Today only I have noticed and found out the importance of using === operator. You can see it in the following example:
$var=0;
if ($var==false) echo "true"; else echo "false"; //prints true
...
9
votes
9answers
808 views
What does “===” mean?
The thing I've noticed is someone using the operator "===" which I can't make sense out of. I've tried it with a function and it corresponds in crazy ways. The language is PHP by the way.
Does ...
7
votes
4answers
201 views
What is the reason for having 2 different “not equal to” operators in PHP?
I just happened to stumbled upon a piece of php code and could see author used <> to do a not equal to comparison:
if ($variable <> "") {
echo "Hello, I am having some value";
}
I ...
5
votes
4answers
177 views
What is the difference between ! ( x < y ) and x >= y in C++?
Going through EASTL, I stumbled across a peculiar line of code. The following link shows the file with the line number of interest at 1870.
...
5
votes
7answers
203 views
comparing, !== versus !=
I know that !== is used to compare variable types too, while != only compares values.
But I see that many people use !== when they compare values, for example:
$stuff = 'foo';
if($stuff !== 'foo') ...
5
votes
2answers
2k views
Using comparison operators in SELECT clause of T-SQL query
How to select a result of comparison operator as a field with type BIT?
How it does work in C#:
bool isGreater = FieldA > FieldB;
How it doesn't work in T-SQL:
SELECT (FieldA > FieldB) AS ...
4
votes
1answer
124 views
Meaning of <=> (less than, equal, greater than) in Perl?
In this answer, I saw the syntax <=>; what does this mean? It seems to be some sort of comparison based on the context, but that's all I can gather. Partial context:
sub rev_by_date { ...
4
votes
1answer
117 views
How does Array#- (subtract operator) compare elements for equality?
When I call Array#- it doesn't seems to call any comparison method on the strings I'm comparing:
class String
def <=>(v)
puts "#{self} <=> #{v}"
super(v)
end
def ==(v)
...
4
votes
2answers
193 views
In Objective C, is there a difference between if (object == nil) and if (nil == object)?
I would lean towards
if (object == nil)
but I've noticed in some tutorials the use of
if (nil == object)
Is this just a style thing, or is there some justified rationale for using either format?
...
4
votes
5answers
396 views
Numeric comparison difficulty in R
I'm trying to compare two numbers in R as a part of a if-statement condition:
(a-b) >= 0.5
In this particular instance, a = 0.58 and b = 0.08... and yet (a-b) >= 0.5 is false. I'm aware of ...
3
votes
4answers
51 views
Multiple -a with greater than / less than break bash script
I wrote a bash script that performs a curl call only during business hours. For some reason, the hourly comparison fails when I add an "-a" operator (and for some reason my bash does not recognize ...
3
votes
4answers
82 views
python - condensing comparisons
I'm a new member here and also new to python. My question is as follows, is it valid to have a line like this?
if x or y is 'whatever':
I tested this in the interpreter and am getting inconsistent ...
3
votes
2answers
476 views
javascript: What is a NOT NOT? (!! operator ) [closed]
Possible Duplicate:
What is the !! operator in JavaScript?
What is a not not in javascript I have seen this a few times :)
function foo(){
return !!(window.history);
}
3
votes
4answers
379 views
MySQL - Why is COUNT with “greater than” quick but “less than” takes forever?
SELECT count(*) c FROM full_view WHERE verified > ( DATE (NOW()) - INTERVAL 30 DAY)
If I run that query it takes a split second but if I switch the comparison operator around it takes eons. Now ...
3
votes
1answer
105 views
Is there a BASIC dialect which uses “==” as the comparison operator?
Anyone who grew up on BASIC, and later switched to another language, had a real difficulty getting used to "(a == b)" rather than "(a = b)" to test for equality.
Is there a dialect of BASIC which ...
2
votes
2answers
97 views
comparison operators' priority in Python vs C/C++
In C/C++, comparison operators such as < > have higher priority than == does, right?
So in C/C++, the code will evaluate to true or 1:
if(3<4 == 2<3) { //3<4 == 2<3 will evaluate ...
2
votes
1answer
95 views
Use of overloaded comparison operator> in C++ in conjunction with a getter function
I'm struggling with a problem concerning the overloading of the binary comparison operator >. By design, it is supposed to compare two cards and return either 1 (if the left-hand-side argument is ...
2
votes
5answers
71 views
sql uses of “less than or equal to” & “not greater than”
Why are there two different logical operators that seem to do the same thing (<= & !>), is there any situation where one would be prefered over the other?
2
votes
3answers
88 views
php operator == (sort of equality) and the integer 0
php, my dearest old frienemy.
ok, so i can come to terms with why the string '0' would be a falsie value. that's only fair seeing as how '0' is the same as 0 in a loosely typed language, and 0 is ...
2
votes
3answers
189 views
Implicit data type conversion in JavaScript when comparing integer with string using ==
The code:
var num = 20;
if(num == "20")
{
alert("It works");
}
else
{
alert("Not working");
}
The question:
In C programming we have a rule name data type promotion, where when there's a ...
2
votes
3answers
142 views
Equivalent of SQL IN in VB.NET
What I am trying to do is to check if a value matches one of two numbers (and easily be able to add to the numbers to compare to). Rather than doing a longer-winded way such as:
If Number = 1 Or ...
2
votes
2answers
159 views
is there ever a reason to use “is”?
Instead of "=="? I know what "is" is, it is comparing the identity of the variable. But when would you ever want to do that? All it has ever done for me is cause problems. After using it for a ...
2
votes
5answers
383 views
I cannot compare two strings in PHP
<?php
$gender = "devilcode";
if (($gender == "female") || ($gender = "male"))
{
echo "ok";
}
else echo "no";
?>
It should output "no" but it ...
2
votes
8answers
328 views
comparison operator
It may be silly question.
Is there any way to give comparison operator at runtime using string variable.
Suppose i have a data of salaries in vector.
vector < int > salary;
Input:
salary[i] != ...
2
votes
2answers
937 views
Sorting By Multiple Conditions in Ruby
I have a collection of Post objects and I want to be able to sort them based on these conditions:
First, by category (news, events, labs, portfolio, etc.)
Then by date, if date, or by position, if a ...
1
vote
6answers
61 views
Why is object_a != object_b, if they have the exact same id, type, and attributes?
I have two User objects that should be the same, but ruby is saying they are not. Can anyone please explain to me what is going on here?
a = current_user
b = votable.user
a == b
false
a.id ...
1
vote
0answers
97 views
Perplexing Javascript Integer comparison bug
This is probably a really simple thing but I can't for the life of me figure out or find anything remotely like the issue. I'm fairly new to Javascript and I'm doing some simple form validation on ...
1
vote
1answer
57 views
Variable comparison problems
I'm still relatively new to C# and the answer to this is probably pretty obvious, but I'm struggling to solve it
I have an enum defined as follows:
enum Request {
None = 0,
GetData,
...
1
vote
3answers
55 views
Is there a PostgreSQL equivalent of SQLite's IS operator?
In SQLite, IS is a binary operator that behaves exactly like = except when one or both of the operands are NULL. In the case where both operands are NULL, the IS operator evaluates to TRUE. In the ...
1
vote
3answers
80 views
Ruby === not acting as it when left-hand argument is a class
I'm using Ruby 1.8.7 with Rails 3.0.1 and am having a problem whose root cause appears to be the "Array === object" operation. I saw the same behavior before in a class of my own creation, and ...
1
vote
2answers
78 views
Ternary Comparison Operator in Stata?
In my Stata do scripts, I often have to compare dates which may be missing. Unfortunately, the internal representation of . is the largest possible number of the given range, so the following holds:
...
1
vote
7answers
552 views
No == operator found while comparing structs in C++
Comparing two instances of the following struct, I receive an error:
struct MyStruct1 {
Position(const MyStruct2 &_my_struct_2, const int _an_int = -1) :
my_struct_2(_my_struct_2),
...
1
vote
2answers
363 views
JavaScript comparison operators: Identity vs. Equality
I've been trying to understand the difference between JavaScript's comparison operators: identity and equality. From what I've read, if you check the equality of two objects using ==, JavaScript will ...
1
vote
2answers
210 views
Issue with using shared_ptr with custom equality operator and STL
There seems to be an issue when using shared pointers together with a custom equality operator and an std::list.
I put together the following example code to demonstrate the issue.
Before trying to ...
1
vote
1answer
136 views
Comparison (operator's overloading) of large and sophisticated structures in c++
We must face serious issue while prepraing my project and working on code in c++.
My code is build on multiple structures/classes where one is included in another.
Finaly i will have to compare all ...
1
vote
1answer
101 views
Executing Update script only if all checks are done
I have an update script that updates username, password, telephone,usergenerated id etc. So lets say a user decides to change his/her telephone but not the username. But when they go to edit their ...
1
vote
3answers
444 views
Checking if integer falls in range using only < operator
I need to come up with some code that checks if a given integer falls within the bounds of a range. (The range is represented by a pair of integers.)
So, given a range r defined as an ...
1
vote
6answers
321 views
How to overload operator==() for a pointer to the class?
I have a class called AString. It is pretty basic:
class AString
{
public:
AString(const char *pSetString = NULL);
~AString();
bool operator==(const AString &pSetString);
...
...
1
vote
3answers
86 views
0
votes
4answers
36 views
Using greater-than or equal/less-than or equal twice in one SQL query
I'm trying to create what is basically a timestamp search query. The user puts in a beginning time and end time for a desired reservation and the search finds any current reservations for that room ...
0
votes
2answers
94 views
Comparison Operator in C#
I have a vague requirement. I need to compare two values. The values may be a number or a string.
I want to perform these operations >, <, ==,<>, >=,<=
In my method I will pass, the ...
0
votes
3answers
112 views
Confused with conditional and logical operators - VB.net
I'm kind of new to VB.net, and since I just finished a C# course, the lack of parentheses creates a lot of confusion on how to write certain combinations of operators.
The C# equivalent of the line I ...
0
votes
1answer
161 views
Pattern matching or how to further exploit operators for string matches in Scala?
With Scala's pattern matching I would like to confirm not only that two Strings are equal but for example, whether a String starts with, ends, or is contained in another etc.
I experimented with case ...