Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
15answers
24k views

Object comparison in JavaScript [closed]

Possible Duplicate: How do you determine equality for two JavaScript objects? What is the best way to compare Objects in JavaScript? Example: var user1 = {name : "nerd", org: "dev"}; var ...
2
votes
2answers
158 views

Can I use the == operator to compare Point objects in Java?

While i am solving the questions from the book "cracking the coding interview"... i got a doubt.the question is: Given two squares on a two dimensional plane, find a line that would cut these two ...
2
votes
1answer
444 views

What happens when you compare two objects?

If I wrote an operator == for class Foo (in C++), what happens, exactly? Does it compare each data member against each other? class Foo { private: int bar; public: bool ...
2
votes
3answers
2k views

Why is my comparing if statement not working?

Why is the following code (in cocoa) not working? NSString *extension = [fileName pathExtension]; NSString *wantedExtension = @"mp3"; if(extension == wantedExtension){ //work } in Xcode this just ...
1
vote
2answers
223 views

nested foreach loop in php causing duplicates in items appended to array during loop

I asked this question several times in php specific forums but no response. Basically I am using codeigniter and an object relational mapper called datamapper. When you instantiate an object, it ...
0
votes
2answers
511 views

How can I write custom comparison (definition for binary operator Equal) for entityframework object to an int?

I'm getting this error: ex = {"The binary operator Equal is not defined for the types 'MySite.Domain.DomainModel.EntityFramework.NickName' and 'System.Int32'."} What I tried to do was do a ...
0
votes
6answers
556 views

How do I compare two Integers?

This sounds like a stupid question, but I'm kinda stuck here. I have to compare two Integer (not int). How do I compare them? Integer x = ... Integer y = ... I can think of this: if (x == y) ...