Tagged Questions

An object is any entity that can be manipulated by commands in a programming language. An object can be a value, a variable, a function, or a complex data-structure. In object-oriented programming, an object refers to an instance of a class.

learn more… | top users | synonyms (1)

379
votes
24answers
110k views

What is the most efficient way to clone a JavaScript object?

What is the most efficient way to clone a JavaScript object? I've seen: obj = eval(uneval(o)); but that's not cross platform (FF only). I've done (in Mootools 1.2) things like this: obj = ...
110
votes
10answers
91k views

Null object in javascript

Why is null considered an object in javascript? Is checking if ( object == null ) do something the same as if ( !object ) do something And also What is the difference between ...
63
votes
1answer
2k views

How to add property to property map without class explorer?

I've got a new question after answer on this question Pass parameter from page to ActiveX How to add property to property map without class explorer? Need to add the property for object and class ...
56
votes
29answers
15k views

Can you write object oriented code in C?

Can you write object oriented code in C? Especially with regard to polymorphism. See also: http://stackoverflow.com/questions/415452/object-orientation-in-c
49
votes
10answers
72k views

How to check null objects in jQuery

I am using jQuery, and I want to check the existence of an element in my page. I have written following code, but it's not working: if ($("#btext" + i) != null){ //alert($("#btext" + ...
48
votes
14answers
10k views

Convert Python dict to object

I'm searching for an elegant way to convert a normal Python dict with some nested dicts to an object. For example: >>> d = {'a': 1, 'b': {'c': 2}, 'd': ["hi", {'foo': "bar"}]} Should be ...
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 ...
38
votes
12answers
59k views

How do I copy an object in Java?

Consider the below code: DummyBean dum = new DummyBean(); dum.setDummy("foo"); System.out.println(dum.getDummy()); // prints 'foo' DummyBean dumtwo = dum; System.out.println(dumtwo.getDummy()); // ...
38
votes
4answers
21k views

Build a Basic Python Iterator

How would one create an iterative function (or iterator object) in python?
37
votes
5answers
31k views

Deleting Objects in JavaScript

I'm a bit confused with JavaScript's delete operator. Take the following piece of code: var obj = { helloText: "Hello World!" }; var foo = obj; delete obj; After this piece of code has been ...
35
votes
10answers
8k views

Object-Orientation in C

Can someone please share a set of nifty preprocessor hacks (ANSI C89/ISO C90 compatible please) which enable some kind of ugly (but usable) object-orientation in C? I am familiar with a few different ...
35
votes
5answers
18k views

Python dictionary from an object's fields

Do you know if there is a built-in function to build a dictionary from an arbitrary object? I'd like to do something like this: >>> class Foo: ... bar = 'hello' ... baz = 'world' ... ...
30
votes
7answers
22k views

How do I determine the size of an object in Python?

In C, we can find the size of an int, char, etc. I want to know how to get size of objects like a string, integer, etc. in Python. Related question: How many bytes per element are there in a Python ...
28
votes
7answers
33k views

How to call a parent class's method from child class in python?

Stackers, I apologize for this question in advance. It must be a FAQ, but I don't seem to be able to find the answer. When creating a simple object hierarchy in python, I'd like to be able to ...
27
votes
3answers
4k views

`new function()` with lower case “f” in JavaScript

My colleague has been using "new function()" with a lower case "f" to define new objects in JavaScript. It seems to work well in all major browsers and it also seems to be fairly effective at hiding ...
27
votes
6answers
21k views

PHP: Storing 'objects' inside the $_SESSION

I just figured out that I can actually store objects in the $_SESSION and I find it quite cool because when I jump to another page I still have my object. Now before I start using this approach I ...
26
votes
2answers
438 views

Why doesn't the compiler convert var[] to object[] in c#?

There is no difference between these two lines, because the compiler, in the second line, understands that it is an array of type int. var x = new int[] { 1, 2, 3 }; //Fine, x is int[] var x = new [] ...
25
votes
11answers
30k views

How to pass object from one activity to another in Android

I am trying to work on sending an object of my customer class from one Activity and display in another Activity. The code for the customer class: public class Customer { private String ...
25
votes
28answers
2k views

How to explain an object?

It's been years since I thought of this, but I am training some real juniors soon and need to explain what an object is to someone who doesn't know what it is. Based on what you use in the real ...
24
votes
7answers
15k views

How to find keys of a hash?

I know in javascript Objects double as hashes but i have been unable to find a built in function to get the keys var h = {a:'b',c:'d'}; I want something like var k = h.keys() ; // k = ['a','c']; ...
23
votes
6answers
1k views

Difference between object a = new Dog() vs Dog a = new Dog()

object a = new Dog(); vs Dog a = new Dog(); In both cases a.GetType() gives Dog. Both invoke same constructor (with same hierarchy). Then can you please tell me the difference between these two ...
23
votes
8answers
13k views

What is the best method to merge two PHP objects?

We have two PHP5 objects and would like to merge the content of one into the second. There are no notion of subclasses between them so the solutions described in the following topic cannot apply. How ...
22
votes
13answers
987 views

Clean Code: Should Objects have public properties?

I'm reading the book "Clean Code" and am struggling with a concept. When discussing Objects and Data Structures, it states the following: Objects hide their data behind abstractions and expose ...
22
votes
5answers
46k views

differences between using wmode=“transparent”, “opaque”, or “window” for an embedded object on a webpage

when embedding a Flash object with the <object> and <embed> tag, there is an attribute called wmode. It seems that most of the time, wmode="transparent" is the same as wmode="opaque" as ...
20
votes
21answers
7k views

Does procedural programming have any advantages over OOP?

[Edit:] Earlier I asked this as a perhaps poorly-framed question about when to use OOP versus when to use procedural programming - some responses implied I was asking for help understanding OOP. On ...
20
votes
8answers
15k views

How much memory does a C#/.NET object use?

I'm developing an application which currently have hundreds of objects created. Is it possible to determine (or approximate) the memory allocated by an object (class instance)?
19
votes
9answers
709 views

C# The 'new' keyword on existing objects

I was wondering as to what happens to an object (in C#), once its reference becomes reassigned. Example: Car c = new Car("Red Car"); c = new Car("Blue Car"); Since the reference was reused, does ...
18
votes
1answer
449 views

What is the significance of the new Reference Classes?

Apparently John Chambers added Reference Classes to R in 2.12. There doesn't appear to be much information online yet, but they're calling them R5 classes, which implies they're on a level with S3 ...
18
votes
2answers
14k views

Python: How to print a class or objects of class using print()?

I am learning the ropes in Python. When I try to print an object of class Foobar using the print() function, I get an output like this: <__main__.Foobar instance at 0x7ff2a18c> Is there a way ...
18
votes
3answers
8k views

How to define an empty object in PHP

with a new array I do this: $aVal = array(); $aVal[key1][var1] = "something"; $aVal[key1][var2] = "something else"; Is there a similar syntax for an object (object)$oVal = ""; ...
18
votes
9answers
14k views

JavaScript object size

I want to know the size occupied by a JavaScript object. Take the following function - function Marks() { this.maxMarks = 100; } function Student() { this.firstName = "firstName"; ...
18
votes
9answers
9k views

C++: What is the size of an object of an empty class?

I was wondering what could be the size of an object of an empty class. It surely could not be 0 bytes since it should be possible to reference and point to it like any other object. But, how big is ...
18
votes
3answers
18k views

What is the JavaScript equivalent of var_dump or print_r in PHP?

I would like to see the structure of object in JavaScript (for debugging). Is there anything similar to var_dump in PHP? Thanks
18
votes
9answers
45k views

How to check if a variable is loaded in JavaScript?

How do I see if a certain object has been loaded, and if not, how can it be loaded, like the following? if (!isObjectLoaded(someVar)) { someVar= loadObject(); }
17
votes
6answers
1k views

javascript test for existence of nested object key

If I a reference to an object - var test = {}; that will potentially (but not immediately) have nested objects, something like - { level1:{level2:{level3:'level3'}} }; what is the best way to ...
16
votes
8answers
8k views

C#: Printing all properties of an object

Is there a method built in to .NET that can write all the properties and such of an object to the console? Could make one using reflection of course, but I'm curious to if this already exists... ...
16
votes
18answers
2k views

Is everything in .NET an object?

Please help us settle the: controversy? Is everything in c# an object, I thought that was the case as everything in Visual Studio at least appears as a struct? Please post a reference so that it ...
16
votes
9answers
2k views

How to ensure hashCode() is consistent with equals()?

When overriding the equals() function of java.lang.Object, the javadocs suggest that, "it is generally necessary to override the hashCode method whenever this method is overridden, so as to ...
16
votes
2answers
11k views

How do you programmatically set an attribute in Python?

Suppose I have a python object x and a string s, how do I set the attribute s on x? So: >>> x = SomeObject() >>> attr = 'myAttr' >>> # magic goes here >>> x.myAttr ...
15
votes
2answers
274 views

Why a class containing a static data member of the same class does not give compilation error?

class base { public: base a; }; It gives compilation error. class base { public: static base a; }; whereas this code does not give compilation error
15
votes
2answers
224 views

Array to Object and Object to Array in PHP - interesting behaviour

Can you explain the next interesting behaviour? class test { //Class *test* has two properties, public and private. public $xpublic = 'x1'; private $xprivate = 'x2'; } $testObj = new test(); ...
15
votes
6answers
887 views

“Closures are poor man's objects and vice versa” - What does this mean?

Closures are poor man's objects and vice versa. I have seen this statement at many places on the web (including SO) but I don't quite understand what it means. Could someone please explain what ...
15
votes
5answers
9k views

LINQ: How to perform .Max() on a property of all objects in a collection and return the object with maximum value

I have a list of objects that have to int properties. The list is the output of anothre linq query. The object: public class DimensionPair { public int Height { get; set; } public int Width { ...
14
votes
1answer
161 views

JSON and PHP arrays

json_encode(array( array(0 => "431.940054495913"), array(1 => "431.940054495913"), )); Is render like this: [ ["431.940054495913"], {"1":"431.940054495913"} ] Why are the ...
14
votes
5answers
245 views

Python: 'object in list' checks and '__cmp__' overflow

this is my first time at stack overflow so I'm sorry if the format doesn't fit quite right with the site. I just recently started learning programming, almost 2 weeks have passed since. I'm learning ...
14
votes
4answers
409 views

Ruby craziness: Class vs Object?

I just started playing with JRuby. This is my first ruby post. I had a hard time understanding classes vs objects in Ruby. It doesnt mean like what classes & objects in other Object oriented ...
14
votes
6answers
17k views

Android: How do i pass an object from one activity to another?

I need to be able to use one object in multiple activities within my app, and it needs to be the SAME object. What is the best way to do this? I have tried making the object "public static" so it ...
14
votes
2answers
175 views

How can I define pre/post-increment behavior in Perl objects?

Date::Simple objects display this behavior, where $date++ returns the next day's date. Date::Simple objects are immutable. After assigning $date1 to $date2, no change to $date1 can affect $date2. ...
14
votes
8answers
11k views

Javascript isDOM — How do you check if a Javascript Object is a DOM Object?

I'm trying to get: document.createElement('div') //=> true {tagName: 'foobar something'} //=> false In my own scripts, I used to just use this since I never needed tagName as a property: ...
13
votes
1answer
1k views

What is dynamic intialization of object in c++?

What is dynamic initialization of objects in c++? Please explain with an simple example...

1 2 3 4 5 117