Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

251
votes
20answers
22k views

JavaScript === vs == : Does it matter which “equal” operator I use?

I'm using JSLint to go through some horrific JavaScript at work and it's returning a huge number of suggestions to replace == with === when doing things like comparing idSele_UNVEHtype.value.length == ...
52
votes
13answers
14k views

Best practices for overriding isEqual: and hash

How do you properly override isEqual: in Objective-C? The "catch" seems to be that if two objects are equal (as determined by the isEqual: method), they must have the same hash value. The ...
46
votes
9answers
32k views

LINQ Select Distinct with Anonymous Types

So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly: myObjectCollection.Select(item=>new ...
34
votes
2answers
1k views

Why “is” keyword has different behavior when there is dot in the string?

>>> x = "google" >>> x is "google" True >>> x = "google.com" >>> x is "google.com" False >>> Can someone give me some hints why its like that? Edit: to ...
33
votes
7answers
16k views

How do you compare structs for equality in C?

How do you compare two instances of structs for equality in standard C?
33
votes
5answers
8k views

How do the equality (== double equals) and identity (=== triple equals) comparison operators differ?

Can you explain the difference between == and ===, giving some useful examples?
30
votes
10answers
20k views

How do I compare strings in Java?

I've been using the "==" operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug. Is "==" bad? When should ...
28
votes
12answers
15k views

Comparing two collections for equality

I would like to compare two collections (in C#), but I'm not sure of the best way to implement this efficiently. I've read the other thread about Enumerable.SequenceEqual, but it's not exactly what ...
27
votes
2answers
524 views

Why the compiler emits box instructions to compare instances of a reference type?

Here is a simple generic type with a unique generic parameter constrained to reference types: class A<T> where T : class { public bool F(T r1, T r2) { return r1 == r2; } } ...
24
votes
6answers
1k views

php == vs === operator

What is the difference between == and === in php. I am unsure when to use both. Updated note: So that it shows up in StackOverflow search, the difference between == and === is the same as the ...
24
votes
5answers
4k views

Elegant ways to support equivalence (“equality”) in Python classes

When writing custom classes it is often important to allow equivalence by means of the == and != operators. In Python, this is made possible by implementing the __eq__ and __ne__ special methods, ...
21
votes
18answers
9k views

What's wrong with using == to compare floats in Java?

According to this java.sun page == is the equality comparison operator for floating point numbers in Java. However, when I type this code: if(sectionID == currentSectionID) into my ...
19
votes
3answers
4k views

In C#, how do I check if a type is a subtype OR the type of an object?

To check if a type is a subclass of another type in C#, it's easy: typeof (SubClass).IsSubclassOf(typeof (BaseClass)); // returns true However, this will fail: typeof ...
19
votes
2answers
4k views

Implementing -hash / -isEqual: / -isEqualTo…: for Objective-C collections

Note: The following SO questions are related, but neither they nor the linked resources seem to fully answer my questions, particularly in relation to implementing equality tests for collections of ...
17
votes
8answers
605 views

What is an elegant way to check if 3 variables are equal when any of them can be a wildcard?

Say I have 3 char variables, a, b and c. Each one can be '0', which is a special case and means it matches every char. So if a is '0', I only need to check if b == c. I want to check if a == b == c, ...
16
votes
3answers
4k views

jQuery object equality

How do I determine if two jQuery objects are equal? I would like to be able to search an array for a particular jQuery object. $.inArray(jqobj, my_array);//-1 alert($("#deviceTypeRoot") == ...
16
votes
3answers
1k views

What's the difference between IEquatable and just overriding Object.Equals()?

I want my Food class to be able to test whenever it is equal to another class. I will later use it against a List, and I want to use its List.Contains() method. Should I implement IEquatable or just ...
15
votes
3answers
258 views

TypeDelegator equality inconsistency?

Consider the following code: class MyType : TypeDelegator { public MyType(Type parent) : base(parent) { } } class Program { static void ...
15
votes
5answers
4k views

Comparing two List<string> for equality

Other than stepping through the elements one by one, how do I compare two lists of strings for equality (in .NET 3.0): This fails: // Expected result. List<string> expected ...
14
votes
3answers
5k views

String comparison in Python: is vs. ==

I noticed a Python script I was writing was acting squirrelly, and traced it to an infinite loop, where the loop condition was "while line is not ''". Running through it in the debugger, it turned out ...
14
votes
4answers
1k views

Why does `Array(0,1,2) == Array(0,1,2)` not return the expected result?

As far as I understand, Scala's == defines the natural equality of two objects. I expected that Array(0,1,2) == Array(0,1,2) compares the natural equality e. g. checks if all elements of the array ...
14
votes
4answers
338 views

When would JavaScript == make more sense than ===?

As JavaScript === vs == : Does it matter which "equal" operator I use? indicates they are basically identical except '===' also ensures type equality and hence '==' might perform type ...
13
votes
5answers
263 views

What does “<=>” in MySQL mean?

What does <=> in MySQL mean and do?
13
votes
3answers
413 views

What problem does IStructuralEquatable and IStructuralComparable solve?

I've noticed these two interfaces, and several associated classes, have been added in .NET 4. They seem a bit superfluous to me; I've read several blogs about them, but I still can't figure out what ...
12
votes
4answers
201 views

using |= in php

I was reading some php code source and found the following: $failed |= is_numeric( $key ); Other than if $key is numeric , what does |= mean?
12
votes
4answers
691 views

In Ruby, why does a equality with nil (“Date.new == nil”) return nil?

When writing some rspec today, I came across some unexpected behavior with comparing Date (and Time) instances to nil. Here's a sample using raw ruby (no Rails or other libraries): user@MacBook-Work ...
11
votes
6answers
615 views

In Scala, is there a neat and simple way to compare one value with multiple values

Say I have a variable x, and I want to check if it's equal to any one of multiple values a, b, c, d, e (I mean the == equality, not identity). In an SQL query the same concept is handled with WHERE ...
11
votes
13answers
376 views

Why aren't Integers cached in Java?

I know there are similar posts on the topic, but they don't quite address my question. When you do: Integer a = 10; Integer b = 10; System.out.println("a == b: " + (a == b)); This will (apparently) ...
11
votes
3answers
533 views

Does Java guarantee that Object.getClass() == Object.getClass()?

I really do mean identity-equality here. For example, will the following always print true. System.out.println("foo".getClass() == "fum".getClass()); Thanks in advance, ~Mack
11
votes
3answers
644 views

JavaScript: {}==false is a SyntaxError?

In Firefox 3.5, I type this in the Firebug console : false=={} // => evals to false {}==false // syntax error What is the explanation for this ?
9
votes
0answers
148 views

C's heritage: bitwise operators vs equality operators precedence [closed]

I've stumbled in a JavaScript situation where bitwise operators were used. Logically, a bitwise operator should have a higher precedence than an equality operator, e.g. if val & 10 == 10 ...
9
votes
7answers
178 views

List<T> Sort uses Comparer<T> instead of IEquatable, Why?

I have written a whole bunch of objects that are all parts of collections and on which I will need to do lots of sort and search. On most of these object I have implemented and overridden the Equals ...
9
votes
1answer
263 views

Checking for deep equality in JUnit tests

I am writing unit tests for objects that are cloned, serialized, and/or written to an XML file. In all three cases I would like to verify that the resulting object is the "same" as the original one. I ...
9
votes
4answers
247 views

Can I overload an == operator on an Interface?

I have an interface like this: public interface IFoo { int A {get;} int B {get;} } and I have multiple classes implementing IFoo. I want to check equality, not based on ReferenceEquality, but ...
9
votes
6answers
1k views

How default .equals and .hashCode will work for my objects?

Say I have my own object public class MyObj { ... } It has some attributes and methods. It DOES NOT implement equals, DOES NOT implement hashCode. Once we call equals and hashCode, what are the ...
9
votes
4answers
276 views

C# == operator in Immediate window behaves differently than at run-time

Try the following in the Immediate window: object a1 = "a"; object a2 = "a"; a1==a2 // outputs false and you'll see that a1 == a2 outputs false. However, at runtime in either a window app or ...
9
votes
3answers
1k views

How to check if two Expression<Func<T, bool>> are the same

Is it possible to find out if two expressions are the same? Like given the following four expressions: Expression<Func<int, bool>> a = x => false; ...
9
votes
4answers
2k views

Equality with Double.NaN

I have the following code... if (Price_Foreign != Double.NaN) { output.Append(spacer); output.Append(String.Format("{0,-10:C} USD",Price_Foreign)); } Which outputs: NaN USD What gives? ...
8
votes
4answers
107 views

How can Python dict have multiple keys with same hash?

I am trying to understand python hash function under the hood. I created a custom class where all instances return the same hash value. class C(object): def __hash__(self): return 42 I ...
8
votes
2answers
145 views

How do i test that an object is an instance of a particular class in D?

How do i test that an object is an instance of a particular class in D? Something akin to Javascript's instanceof keyword?
8
votes
4answers
179 views

Java: How to test on array equality?

Why is the following code printing "Different."? boolean[][] a = { {false, true}, {true,false} }; boolean[][] b = { {false, true}, {true,false} }; if (Arrays.equals(a, b) || a == b) ...
8
votes
1answer
318 views

What's the difference between equal?, eql?, ===, and ==?

I am trying to understand the difference between these four methods. I know by default that == calls the method equal? which returns true when both operands refer to exactly the same object. === by ...
8
votes
5answers
466 views

Are two functions equal?

[Edit] The general question seems incredibly hard to solve. Here is a significantly restricted version of this question. How do I determine equality of functions? lets say we have function f() { ...
8
votes
6answers
143 views

Checking For Equal Instances of 2 Different (Included Example)

I use the == in the code below and prints out "Equals!", why? Can someone explain why these two different strings a and b are equal? public class test { public static void main() { ...
8
votes
8answers
500 views

Why hashCode() returns the same value for a object in all consecutive executions?

I am trying some code around object equality in java. As I have read somewhere hashCode() is a number which is generated by applying the hash function. Hash Function can be different for each ...
8
votes
4answers
473 views

CLR JIT optimizations violates causality?

I was writing an instructive example for a colleague to show him why testing floats for equality is often a bad idea. The example I went with was adding .1 ten times, and comparing against 1.0 (the ...
8
votes
6answers
2k views

What is “Best Practice” For Comparing Two Instances of a Reference Type?

I came across this recently, up until now I have been happily overriding the equality operator (==) and/or Equals method in order to see if two references types actually contained the same data (i.e. ...
7
votes
7answers
190 views

Result of calling IEquatable<T>.Equals(T obj) when this == null and obj == null?

What should IEquatable<T>.Equals(T obj) do when this == null and obj == null? 1) This code is generated by F# compiler when implementing IEquatable<T>. You can see that it returns true ...
7
votes
6answers
386 views

2 binary trees are equal or not [closed]

Possible Duplicate: Determine if two binary trees are equal Got an interview yesterday, a question got me, here it is: Description There are 2 binary trees, check if they are equal. ...
7
votes
4answers
152 views

How do immutable ID properties affect .NET equality?

(Apologies for the long setup. There is a question in here, I promise.) Consider a class Node that has an immutable unique ID that is assigned at construction time. This ID is used for serialization ...

1 2 3 4 5 7