Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
9answers
14k views

Can't operator == be applied to generic types in C#?

According to the documentation of the == operator in MSDN, For predefined value types, the equality operator (==) returns true if the values of its operands are equal, false otherwise. For ...
13
votes
6answers
1k views

C# what does the == operator do in detail?

in c# what does exactly happen in the background when you do a comparison with the "==" operator on two objects? does it just compare the addresses? or does it something like Equals() or CompareTo() ? ...
10
votes
9answers
456 views
6
votes
3answers
88 views

Overloading the == function

I am currently working on creating an overloaded function for the == operator. I am creating an hpp file for my linked list and I can't seem to get this operator working in the hpp file. I currently ...
6
votes
5answers
182 views

Are all PHP equality comparisons reflexive?

Is $a == $b always equivalent to $b == $a? I think in JavaScript there's a few weird cases where that's not true, due to casting. I think ide is correct. I'll ask another question.
6
votes
4answers
447 views

Two '==' equality operators in same 'if' condition are not working as intended

I am trying to establish equality of three equal variables, but the following code is not printing the obvious true answer which it should print. Can someone explain, how the compiler is parsing the ...
6
votes
4answers
990 views

C#: What needs to be overriden in a struct to ensure equality operates properly?

As the title says: do i need to override the == operator? how about the .Equals() method? Anything i'm missing?
5
votes
2answers
223 views

Object.Equals is virtual, but Object.operator== does not use it in C#?

I got hit by a strange "asymmetry" in C# that I do not really understand. See the following code: using System; using System.Diagnostics; namespace EqualsExperiment { class Program { ...
5
votes
4answers
373 views

After overloading the operator==, how to compare if two variables points at the same object?

Overloading the comparison operator, how to compare if the two variables points to the same object(i.e. not value) public static bool operator ==(Landscape a, Landscape b) { return a.Width == ...
4
votes
2answers
72 views

Difference between Object.Equals(objA, objB), objA.Equals(objB) and objA == objB for CLR types?

I am wondering if the CLR types would return different results from the following: Object.Equals(objA, objB) objA.Equals(objB) (objA == objB) I do realize that outside of the CLR someone could ...
4
votes
4answers
1k views

java: Integer equals vs. ==

As of java 1.5, you can pretty much interchange Integer with int in many situations. However, I found a potential defect in my code that surprised me a bit. The following code: Integer cdiCt = ...; ...
4
votes
5answers
653 views

Operator== in derived class never gets called

Can someone please put me out of my misery with this? I'm trying to figure out why a derived operator== never gets called in a loop. To simplify the example, here's my Base and Derived class: class ...
4
votes
5answers
308 views

What are the best practices for implementing the == operator for a class in C#?

While implementing an == operator, I have the feeling that I am missing some essential points. Hence, I am searching some best practices around that. Here are some related questions I am thinking ...
4
votes
5answers
3k views

C# implicit conversions and == operator

Some code for context: class a { } class b { public a a{get;set;} public static implicit operator a(b b) { return b.a; } } a a=null; b b=null; a = b; //compiler: ...
3
votes
4answers
145 views

What is best practice in Ruby to avoid misusing assignment “=”?

I've been bitten a couple of times by forgetting that x = y in Ruby makes x refer to the same object as y; I'm too used to languages where it means, in Ruby terms, x = y.dup. Forgetting this, I ...
3
votes
2answers
550 views

php overload equals-operator

In a PHP program I have an array of some custom objects, and I want to find if the array contains a certain object. Of course I can use array_search, but this checks if the objects are the same ...
3
votes
4answers
390 views

What happens if “== operator is not defined”?

What happens if "== operator is not defined"? Example: class a { int variable = 0; } class b { void proc() { a ref1 = new a(); a ref2 = new a(); bool cmp1 = ref1 ...
3
votes
6answers
390 views

Why does my boolean test in java always fail?

I am trying to make a boolean test so that if one of the tire pressures is below 35 or over 45 the system outputs "bad inflation". In my class I must use a boolean, which is what I tried. However the ...
3
votes
5answers
2k views

Equality Test for Derived Classes in C++ [closed]

Possible Duplicate: What’s the right way to overload operator== for a class hierarchy? In C++, how can derived classes override the base class equality test in a meaningful way? For ...
3
votes
5answers
403 views

Should I Overload == Operator?

How does the == operator really function in C#? If it used to compare objects of class A, will it try to match all of A's properties, or will it look for pointers to the same memory location (or maybe ...
3
votes
9answers
273 views

How to treat nulls in equality comparisons?

When I have to implement equality comparers for public class SampleClass { public int Prop { get; set; } } Should I make null == new SampleClass() and new SampleClass() == null and new ...
3
votes
6answers
2k views

C++ template class error with operator ==

Error: error C2678: binary '==' : no operator found which takes a left-hand operand of type 'const entry' (or there is no acceptable conversion) The function: template <class T, int maxSize> ...
2
votes
3answers
99 views

“unexpected type” error when comparing enum values

Most people I've seen with this problem were using = where they needed ==. What's causing my problem here? com\callmeyer\jopp\FieldCoordinator.java:303: unexpected type required: class, package ...
2
votes
4answers
263 views

In C# when is a value/object copied and when is its reference copied?

I keep getting the same issue over and over again where an object I want to reference is copied or where an object I want to copy is referenced. This happens when I use the = operator. For example, ...
2
votes
2answers
331 views

Should you use 'isEqual' or '=='?

I saw a couple of questions here on SO, with ansers including the function isEqual: instead of the standard ==. So far, I have only learned to use the ==, so I'm wondering what's better to use, what ...
2
votes
3answers
205 views

In a struct, is it valid to implement operator== via Equals, but not override Equals and GetHashCode?

Is this valid? public struct MyStruct { public int Foo { get; set; } public static bool operator ==(MyStruct a, MyStruct b) { return a.Equals(b); } public static bool ...
2
votes
5answers
249 views

How can i override a base class's == operator, so the override gets called

With code like the following public class Task { string Name; public static bool operator ==(Task t1, Task t2) { return t1.Name = t2.Name && t1.GetType() == t2.GetType(); } } public ...
2
votes
2answers
210 views

Can the behavior for == be defined for an interface reference?

If an interface inherits IEquatable the implementing class can define the behavior of the Equals method. Is it possible to define the behavior of == operations? public interface IFoo : IEquatable ...
1
vote
1answer
65 views

Overloaded == function not getting called

I am currently working on overloading the == operator for my linked list. I have the operator in my header set up like the following: class sqrlst { public: std::vector<int> vlist; bool ...
1
vote
4answers
138 views

GetHashCode and Equals implementation in Dictionary C#

I came to this site searching for object comparison in Dictionary, and i came to know that overriding GetHashCode and Equals are a must for doing object comparison in C#. Here is a piece of code that ...
1
vote
4answers
109 views

Comparing VALUE and REFERENCE of types - C#

I know there are a lot of ways to compare VALUE and REFERENCES in C#, but I'm still a bit confused about what type performs what when you try to compare either VALUE or REFERENCE. String examples: ...
1
vote
3answers
132 views

How do you override operator == when using interfaces instead of actual types?

I have some code like this: How should I implement the operator == so that it will be called when the variables are of interface IMyClass? public class MyClass : IMyClass { public static bool ...
1
vote
2answers
143 views

Dictionary keys don't contain a key that's already contained in keys

Why is the following 'exist' boolean variable getting a value of false??? foreach (Cell existCell in this.decoratorByCell.Keys) { //this call yield the same hashcode for both cells. ...
1
vote
4answers
298 views

Problem with operator ==

I am facing some problem with use of operator == in the following c++ program. #include < iostream> using namespace std; class A { public: A(char *b) { a = b; ...
1
vote
2answers
279 views

Any way to allow classes implementing IEntity and downcast to have operator == comparisons?

Basically here's the issue. All entities in my system are identified by their type and their id. new Customer() { Id = 1} == new Customer() {Id = 1}; new Customer() { Id = 1} != new Customer() {Id = ...
1
vote
5answers
253 views

An operator == whose parameters are non-const references

I this post, I've seen this: class MonitorObjectString: public MonitorObject { // some other declarations friend inline bool operator==(/*const*/ MonitorObjectString& lhs, ...
0
votes
3answers
84 views

PHP if not empty string and either string = “this” or “that” how to do that?

function test(){ $embedmode = 'normal'; if ( ( $embedmode != '' ) && ( $embedmode != 'normal' || $embedmode != 'popup' || $embedmode != 'popup' ) ) return "<p>ARVE Error: mode is not ...
0
votes
2answers
86 views

How to eval a string containing an equal symbol?

I have some issues with the eval function. I have a list like, for example, list1 = [('a',1), ('b',2), ('c',3)] and I would like to assign each value of a tuple to the first element: for el in ...
0
votes
4answers
121 views

What is the difference between == and === in JavaScript? [closed]

Possible Duplicate: Javascript === vs == : Does it matter which “equal” operator I use? When would JavaScript == make more sense than ===? What is the difference between below ...
0
votes
4answers
95 views

Why do != and == not behave like the equals method in Java? [closed]

Possible Duplicates: Java String.equals versus == whats the difference between ".equals and ==" public String getName() { return new String("foobar"); } if(getName() != ...
0
votes
8answers
253 views

'==' vs string.equals c# .net [closed]

Possible Duplicate: C#: String.Equals vs. == Hi to all. Some time someone told me that you should never compare strings with == and that you should use string.equals(), but it refers to ...
0
votes
3answers
92 views

Class with overridden equals method not returning true for SOME objects that are equal

I have a vector class that has it's Equals(object obj) method overridden so that I can compare them. public class Vector3f { public float x,y,z; public Vector3f(float x, float y, float z) ...
0
votes
3answers
171 views

using the equals keyword in linq [closed]

Possible Duplicate: Lambda Expression: == vs. .Equals() Hi, I use a lot the keyword Equals to compare variables and other stuff. but wines = wines.Where(d => ...
0
votes
3answers
238 views

Perl if equals sign

I need to detect if the first character in a file is an equals sign (=) and display the line number. How should I write the if statement? $i=0; while (<INPUT>) { my($line) = $_; ...