Comparison operators, as their name implies, allow to compare two values and usually return Boolean value (true or false).

learn more… | top users | synonyms

0
votes
2answers
28 views

How does Ruby's sort method work with the combined comparison (spaceship) operator?

Beginning programmer here, just wanting to understand the process behind Ruby's sort method when using the spaceship operator <=>. Hope someone can help. In the following: array = [1, 2, 3] ...
0
votes
2answers
46 views

How to analyze a string in java to make sure that it has both letters and numbers? [closed]

I need to analyze a string in JAVA to find out if it has both letters and numbers. So this is what I have so far. The variable pass is a String of maximum 8 characters/numbers that is inputted by the ...
3
votes
1answer
59 views

python total_ordering : why __lt__ and __eq__ instead of __le__?

In Python3, the functools.total_ordering decorator allows one to only overload __lt__ and __eq__ to get all 6 comparison operators. I don't get why one has to write two operators when one would be ...
1
vote
1answer
34 views

Python evaluates comparison of integer and character with the same value as False

I ran into this interesting little 'gotcha' this evening, consider the following code snippet: ( chr(1) == 1 ) This comparison evaluates to False on Python 2.7.4, is this a feature or a bug?, If a ...
0
votes
1answer
33 views

Does any style guide prefer < over > for readability?

For coding a relational expression, do any authoritative standards or style guides or field studies recommend less-than over greater-than? For example, prefer (0 <= x && x < 1) to (x ...
0
votes
4answers
40 views

PHP if else ignores after “OR/||” Operator

Hi I'm having a problem with this line of code. if($_SESSION['permission'] != "superadmin" || "admin"){ //header("location:logout.php"); echo $_SESSION['permission']; } It is a quick line ...
0
votes
0answers
41 views

difference between not i==j and i is not j [duplicate]

i was creating this program which checks whether 2 items on a list add up to a certain amount of credits i have however each item should be counted only once.. the first part was giving me the ...
0
votes
2answers
40 views

Long logical operator comparisons

I have three variables which determine an outcome. There is only two outcomes but the outcome is based on the variables. I have thought up some long if statements but I am wondering if there is a ...
1
vote
2answers
165 views

How do I overload the == operator for the string class in c++? [duplicate]

I am a new c++ programmer and I only recently learned about operator overloading. While working on an independent project I came across an issue, I wanted to compare user input strings with other ...
1
vote
1answer
56 views

Avoiding strange results with most comparison operators with read-from-string

I am using an implementation of common lisp called CCL and I have run into a strange issue that I do not quite understand. When I call: (read-from-string "(=)") I get a list containing the equal ...
1
vote
2answers
128 views

Is std::equal_to guaranteed to call operator== by default?

I had always thought that the standard required the non-specialized template for std::equal_to<T> to call T::operator==, but I noticed the description at cppreference.com almost implies it's the ...
2
votes
2answers
79 views

Possible to chain comparison operators?

I've been thus far unable to find this information in the official PHP docs, or on this site. So, that may mean I'm searching under the wrong terms, or it is not supported. What am I looking for? I'll ...
4
votes
3answers
86 views

Python “in” Comparison of Strings of Different Word Length

I am working through a database of names with possible duplicate entries and attempting to identify which we have two of, unfortunately the formatting is a bit less than optimal and some entries have ...
0
votes
1answer
40 views

Iteration over array using its count continues for an extra step

I have these arrays set up to go into a NSDictionary and then they are added to an NSMutableArray. This is to set up sections. NOTE: The content of the arrays are a bit random as I am just trying ...
1
vote
4answers
42 views

Concatenating comparisons in javascript

This is more out of curiosity but is it possible to concatenate comparisons in javascript? example: var foo = 'a', bar = 'b'; if (foo === ('a' || bar)) { console.log('yey'); } as oposed ...
1
vote
5answers
78 views

strlen() with logical and comparison operators not working

Ok I am fairly fairly new in PHP and I am trying to make a contact form. There are some fields which I need to be of certain characters. if (!empty($_POST['title'])) { $title = $_POST['title']; ...
0
votes
3answers
99 views

Understanding assignment/comparison vb.net

This is my first time on Stack Overflow and I am trying to understand what '=' means in the last line of this code: Dim label As Label = Me.labels.Item(String.Concat(New Object() { ...
1
vote
3answers
94 views

Caveat on usage of logical operators in if .. else if .. else

This is not a question. I would like to cover a scarcely documented part of R. a <- 0.3-0.1 # should be 0.2 b <- 0.7-0.5 # should also be 0.2 However, due to floating point representation, ...
2
votes
1answer
131 views

Structural comparison in Standard ML

I can't seem to find reference on why does this not work: - (2000,1)<(2000,1); stdIn:18.1-18.18 Error: operator and operand don't agree [overload] operator domain: 'Z * 'Z operand: ...
3
votes
2answers
83 views

Comparing different strings in PHP with == returns true

I was just debugging a script and found that an if-statement wasn't working the way I expected it to. var_dump("6064365413078728979" == "6064365413078728452"); die(); The code above will result in ...
1
vote
5answers
129 views

If statement on array

I have the following java bit if(board[i][col].equals(true)) return false However, when I compile it I get the following error - "int cannot be dereferenced" - can anybody please explan what ...
1
vote
1answer
57 views

Lua Boolean compound or

I'm just getting started with a basic Lua interpreter, and I've run into this issue: a = tonumber(a) b = tonumber(b) if a < 1 or b < 1 or a > x or b > x then ... end And I'm getting ...
0
votes
4answers
37 views

Is the same to use || instead OR and && instead of AND in MYSQL?

My question is the one stated in the title: "Is the same to use || instead OR and && instead of AND in MYSQL?" I know that normally you use "AND" or "OR" as comparison operators in SQL but it ...
4
votes
5answers
213 views

Why [] == [] is false in javascript?

I am working on a part of code where I have an array which looks like [[data]]. The data is rendered on the server side through django template engine. So my code looks like this: var data = {{ ...
-1
votes
4answers
100 views

java equals and == confusion [duplicate]

Possible Duplicate: what is String pool in java? 1. I know that == checks if two object are pointing to same memory location also the default definition of equals uses == to do the ...
1
vote
3answers
135 views

Why doesn't NotImplemented raise a TypeError?

Suppose I define a class A and I don't want anyone to write an inequality of that class without getting away. class A(): def __ne__(self, other): return NotImplemented print(A() != A()) ...
8
votes
3answers
107 views

Custom class ordering: no error thrown, what is Python testing for?

Without specifying the equality comparison properties of objects, Python is still doing something when using > and <. What is Python actually comparing these objects by if you don't specify ...
2
votes
2answers
311 views

javascript / jquery - select the larger of two numbers

I'm trying to use javascript to select the greater of two numbers. I know I can write an if statement, but I'm wondering if there's some sort of Math operation or something to make this more ...
2
votes
1answer
141 views

What are the default comparison operators for objects?

I found a bug in my code where I forgot to use a custom comparator when sorting a container of structs. This made me wonder what it was using as the less than operator, since I didn't define any for ...
1
vote
3answers
93 views

Verify count_all_results = 1 in CodeIgniter

I'm trying to accomplish getting the current users session (if it exists) then comparing it to the database, along with a loggedIn value = 1 (meaning loggedIn) and count that a single row exists ...
8
votes
5answers
138 views

operator call syntax in C++

Whether there can be a situation where the syntax if (first == second) // ... is different from that? if (first.operator==(second)) // ... I don't think so, but just want to know it.
0
votes
3answers
160 views

Double comparison

Can I do this in C++? if (4<5<6) cout<<"valid"<<endl; i.e a double comparison? Since I know that I can bool a; a = 1+2<3+4<5>6;//etc
-8
votes
2answers
183 views

The usage of == and === in php [duplicate]

Possible Duplicate: What does “===” mean? I am confused with the use of those operators in php, I am not quite sure when should I use === and when ==. for example why/when ...
2
votes
2answers
71 views

php comparison operators on objects within loops

I have two arrays in php that contain custom class objects. One I iterate through in a while loop, using $h, and the other I access through another variable, $i, inside the while loop for comparison. ...
0
votes
1answer
120 views

PHP string sort by letter range can't execute single character comparison

I'm working on outputing a list of companies in a foreach statement. To compare the first letters of each company I'm substinging the first character of each. These need to be sent through an if ...
3
votes
5answers
654 views

JavaScript - === vs == operators performance

A few weeks ago, I have read this thread Is < faster than <=? about comparison operators in C. It was said that there is no difference in the performance between < and <= as they are ...
131
votes
5answers
5k views

Difference between “!==” and “==!” [closed]

Yesterday I stumbled over this when I modified PHP code written by someone else. I was baffled that a simple comparison (if ($var ==! " ")) didn't work as expected. After some testing I realized that ...
0
votes
1answer
45 views

Comparison operators for subnetwork class

I'd like to define some comparison operator for a subnet class. My first thought is that we should be comparing the number of hosts in a subnet: 192.168.0.0/24 < 192.168.0.0/23 || ...
8
votes
7answers
423 views

Ordering of boolean values

Under C++ or <stdbool.h> from C99, how is the less-than operator < defined for boolean values? Alternatively, explain the behaviour of this code: #ifndef __cplusplus #include ...
-1
votes
4answers
204 views

Comparing 1 value to single array in PHP

How to comparing one value to every single value in the particular array? For example: $list = ("blue", "red", "green", "yellow", "orange", "white"); $value = "blue"; if ($value == $list) { // ...
0
votes
1answer
135 views

JavaScript if() statement not evaluating as expected

I have a jsFiddle to demonstrate my issue (and allow you guys to straighten me out). I'm simply checking the values of two input textboxes and alerting the user if the max price is less than the ...
3
votes
1answer
285 views

how do i make a vbscript data type subtype LONG to get it to be 2,147,483,647?

I have a web page that displays 10 images at a time from a directory. In the directory I have now 55,000 images. Once zz below hits 32,767 it stops. How do I make ZZ into a subtype LONG to get it to ...
0
votes
2answers
3k views

Java instanceof operator

Is there a valid class Type variable that can be used with the instanceof operator? For Example: String s = "abc"; Class<?> classType = String.class; if (s instanceof classType) { //do ...
5
votes
2answers
189 views

Impossible comparison between ulong and long suddenly possible

I know why this is not allowed: ulong x = 0xFEDCBA9876543210; long y = Int64.MaxValue; Console.WriteLine(x < y); Obviously, there is no way for the runtime to implicitly cast either operand to ...
0
votes
0answers
23 views

Compare datasets to find inserts, updates, and deletes?

Is there any form of container within .NET that can achieve the following: Create 2 of the containers Populate each with similar, but not identical data set Compare the two containers to find ...
4
votes
4answers
324 views

operator< comparing multiple fields

I have the following operator< that is supposed to sort first by a value, then by another value: inline bool operator < (const obj& a, const obj& b) { if(a.field1< ...
0
votes
1answer
70 views

Unable to restrict input such that min < mode < max

I'm trying to write a VBA function that restricts its inputs. It takes three arguments min, mode, and max, and needs to ensure that min < mode < max. Here's what I have so far: Function ...
3
votes
3answers
122 views

Very strange behaviour comparing undefined and false

I have this output in the console: console.log((!undefined)==(!false)) // true (fine) console.log((!!undefined)==(!!false)) // true (still fine) As I know, !!x==x, isn't it? ...
9
votes
1answer
235 views

What is the rationale for == having higher precedence than bitwise AND, XOR, and OR? [closed]

In C++, what is the rationale for == and != having higher precedence than bitwise AND, XOR, and OR? It would seem to me more natural to have operator== and operator!= come after operator&, ...
1
vote
2answers
71 views

PHP comparison operators and statements of the form if (!foo())

Here is my little script, and from writing it I've learned that I've no idea how PHP handles variables... <?php $var = 1; echo "Variable is set to $var <br />"; if (!foo()) echo ...

1 2 3