The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
46 views

A duck-typing library for C# that doesn't break object identity?

It's been concerning me that the duck-typing libraries I can find for C# all breaks object identity, ie Object.ReferenceEquals returns false for a duck-typed object and its original object. I have a ...
0
votes
2answers
40 views

php differentiate between different table id's?

i have different objects with there id's, all id's are unique. objects photo feed event comment all of there id's are unique and never repeated again. i want to pass that id in url like this: ...
0
votes
2answers
50 views

Using one method in place of many

I am trying to learn Objective-C for iOS. I have tried researching this, but I must not be using the right keywords. I have several labels that are simply named, Label1, Label2, etc. I also have a ...
3
votes
1answer
119 views

Is it possible to get equivalent of 'memory address' of .net Object?

We are rolling a custom serialisation tool into our project and are coming across a need to uniquely identify each object by a primitive value type that can be used as a synonym of its 'identity'. The ...
4
votes
2answers
83 views

When are physically distinct values created in OCaml?

I'm trying to understand what the physical equality operators (Pervasives.(==) and Pervasives.(!=)) mean in OCaml. The language manual says that the expression "" is a "constant", not an ...
3
votes
1answer
245 views

DDD and MongoDB: Is it okay to let Mongo create ObjectIDs?

According to DDD (Blue book, Evans) a Factory has the responsibility to create an Aggregate Root in a valid state. Does this mean it should be able to create the technical id (objectId in mongoDB ...
1
vote
2answers
125 views

mongoDB wont allow me to update

Ok this issue is driving me nutts, I thought that _id was meant to be ObjectID while the first time it inserts it does it correctly when I try to update it using the _id it does not work. here is my ...
1
vote
1answer
196 views

how to get the objectID from url?

my code is below : NSURL *urlID = [objID URIRepresentation]; NSString *strID = [urlID absoluteString]; NSDictionary *infoDict = [NSDictionary dictionaryWithObjectsAndKeys:strID, @"objectID", ...
8
votes
4answers
312 views

Why does Ruby tend to assign object IDs in descending order?

I've noticed that objects have their IDs assigned in a counterintuitive fashion. The earlier an object is created, the greater its object ID. I would have thought they would have been assigned in ...
3
votes
3answers
109 views

What objects are guaranteed to have different identity?

ORIGINAL QUESTION: (My question applies to Python 3.2+, but I doubt this has changed since Python 2.7.) Suppose I use an expression that we usually expect to create an object. Examples: [1,2,3]; 42; ...
1
vote
2answers
237 views

which is best for performance while referring using _id? While retrieving using _id, i am getting error INVALID OBJECT ID

How should i refer a collection in another collection , a unique username or default _id (object id) or a normal id that increments when a new record is inserted . I read that object ids increase ...
0
votes
1answer
267 views

$all parameter in mongodb does not work with ObjectId list

I retrieve a list of ObjectId and I want to retrieve all object in my mongo database using the parameter $all I'm using pymongo and my request look like this : db.database.collection.find({ "_id" : ...
1
vote
1answer
153 views

How can i get my object id from a generic update views to use in my form in django 1.1

I m using generic view to update object. I m using form : class VehiPrepaClientForm(ModelForm): class Meta: model = VehiPrepa fields = ('date_dem_prepa','carburant','ty_carburant') ...
2
votes
1answer
1k views

What does OBJECT_ID do in SQL Server?

I'm trying out the usage of OBJECT_ID and found the following entry in MSDN: "Returns the database object identification number of a schema-scoped object." What is database object identification ...
4
votes
2answers
231 views

Implementing object tracking, like in Boost::Serialization

I'm implementing a "clone" function for a graph of objects in C++ and part of the problem is to ensure that if there are two pointers to the same object, it is not cloned twice. I've done this by ...
3
votes
2answers
681 views

How to access an element of a set using an equivalent object?

If I have an object that compares equal to an element of a Python set, but is not the same object, is there a reasonable way to get a reference to the object in the set? The use case would be using ...
3
votes
2answers
112 views

Please explain the technique used in this code to test Object Equality and Identity

Please explain the technique used in this code to test Object Equality and Identity. Better, if you can supply me any web-link/book-reference for detailed discussion. [Serializable] public ...
1
vote
1answer
821 views

Morphia saves new entities instead of update _id

Sorry for very dumb question. I'm using Morphia 1.00. Have some entity: @Entity("Vacancy") public class Vacancy { @Id private ObjectId id; @Version long version; private String title; and some ...
20
votes
3answers
476 views

If Java's garbage collector moves objects, what is Object.hashCode and System.identityHashCode?

I've often heard that these methods (Object.hashCode and System.identityHashCode) return the address of the object, or something computed quickly from the address; but I'm also pretty sure the garbage ...
2
votes
2answers
648 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 ...
1
vote
2answers
380 views

Why does ASP.NET viewstate lose identity of serialized objects?

Short question: When I put one and the same instance of an object inside viewstate twice, upon deserialization there are two instances. I want there to be just one instance. Can this be done and how? ...
0
votes
6answers
266 views

A Question about JTextField in Java

I met a small problem when running a Java class that I wrote, though the design is pretty straightforward. I've created a JPanel, and I've added four JTextFields onto it and I've attached a button to ...
3
votes
2answers
169 views

String concatenation in Python

Can you describe difference between two ways of string concatenation: simple __add__ operator and %s patterns? I had some investigation in this question and found %s (in form without using ...
9
votes
2answers
1k views

In Ruby, why does inspect() print out some kind of object id which is different from what object_id() gives?

When the p function is used to print out an object, it may give an ID, and it is different from what object_id() gives. What is the reason for the different numbers? Update: 0x4684abc is different ...