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.
1055
votes
30answers
266k views
Most efficient way to clone an 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 = ...
343
votes
14answers
275k views
Why is null an object and whats the difference compared to undefined
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 ...
261
votes
25answers
117k views
Most elegant way to clone a JavaScript object
I have an object x. I'd like to copy it as object y, such that changes to y do not modify x.
What's the most elegant way of doing this in JavaScript?
Edit: I realize that copying objects derived ...
147
votes
32answers
45k 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
139
votes
10answers
7k views
Interview : Can we instantiate abstract class?
The interviewer asked, Can we instantiate an abstract class? I said, No. He told me, Wrong, we can. I argued a bit on this. Then he told me to try this yourself at your home.
abstract class my {
...
126
votes
24answers
28k 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 ...
117
votes
7answers
91k 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 ...
115
votes
13answers
164k 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()); // ...
106
votes
16answers
97k 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 ...
101
votes
14answers
69k views
Object comparison in JavaScript [duplicate]
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 ...
99
votes
5answers
54k views
Build a Basic Python Iterator
How would one create an iterative function (or iterator object) in python?
95
votes
12answers
138k views
How to check null objects in jQuery
I'm 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" + i).text());
...
86
votes
8answers
106k views
Converting an object to a string
I'm trying to convert a JavaScript object into a string, but I just cannot find the solution after Googling.
Can someone help me on it?
82
votes
5answers
2k views
Why does (“foo” === new String(“foo”)) evaluate to false in JavaScript?
I was going to start using === (triple equals, strict comparison) all the time when comparing string values, but now I find that
"foo" === new String("foo")
is false, and same with this:
var f = ...
78
votes
7answers
4k views
How does the String class override the + operator?
Why in Java you're able to add Strings with the + operator, when String is a class? In theString.java code I did not find any implementation for this operator. Does this concept violate object ...
78
votes
7answers
54k 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 ...
76
votes
6answers
62k 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
76
votes
7answers
76k 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 ...
73
votes
5answers
41k 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'
...
...
72
votes
7answers
39k 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 ...
70
votes
11answers
37k views
Find object by id in array of javascript objects
I've got an array:
myArray = [{'id':'73','foo':'bar'},{'id':'45','foo':'bar'},etc.]
I'm unable to change the structure of the array. I'm being passed an ID#, e.g. '45', and I want to get 'bar' for ...
67
votes
9answers
51k 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'];
...
65
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 ...
61
votes
11answers
19k 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 ...
60
votes
4answers
51k 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 ...
56
votes
9answers
28k 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 ...
54
votes
5answers
89k 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 ...
52
votes
4answers
20k views
Python class inherits object
Is there any reason for a class declaration to inherit from object?
I just found some code that does this and I can't find a good reason why.
class MyClass(object):
# class code follows...
52
votes
5answers
14k 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 ...
48
votes
3answers
27k 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 = "";
...
47
votes
5answers
30k views
Sorting JavaScript Object by property value
If I have a JavaScript object such as:
var list = {"you": 100, "me": 75, "foo": 116, "bar": 15};
is there a way to sort the properties based on value? So that I end up with
list = {"bar": 15, ...
46
votes
16answers
2k views
Duplicating objects in Java
I learned that when you modify a variable in Java it doesn't change the variable it was based on
int a = new Integer(5);
int b = a;
b = b + b;
System.out.println(a); // 5 as expected
...
46
votes
2answers
38k views
Java Serializable Object to Byte Array
From my searches for Serialization in Java most of the examples document writing to a file or reading from one.
my question is lets say i have a serializable class AppMessage.
I would like to ...
44
votes
5answers
22k views
Determining if a javascript object has a given property
If I want to test of object x has a defined property y regardless of x.y's value, is there a better way that the rather clunky:
if ( typeof(x.y) != 'undefined' ) ...
?
44
votes
5answers
47k 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 ...
42
votes
3answers
28k views
How to create object property from variable value in javascript?
I want to add new property to 'myObj', name it 'string1' and give it a value of 'string2', but when I do it it returns 'undefined:
var myObj = new Object;
var a = 'string1';
var b = 'string2';
...
42
votes
11answers
28k 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:
...
41
votes
10answers
23k views
C#: Printing all properties of an object [duplicate]
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... ...
41
votes
2answers
27k 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
...
38
votes
6answers
36k 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 two int properties. The list is the output of another linq query. The object:
public class DimensionPair {
public int Height { get; set; }
public int Width { ...
38
votes
2answers
30k views
how do i check if an object has a key in javascript? [duplicate]
which is the right thing to do?
if (myObj['key'] == undefined)
or
if (myObj['key'] == null)
or
if (myObj['key'])
Exact duplicate of: How do I check to see if an object has an attribute in ...
38
votes
6answers
37k views
How do I access properties of a javascript object if I don't know the names?
Say you have a javascript object like this:
var data = { Name: 'Property Name', Value: '0' };
You can access the properties by the property name:
var name = data.Name;
var value = data["Value"];
...
37
votes
4answers
13k views
PHP, sort array of objects by object fields
How can I sort this array of objects by one of its fields, like name or count ?
Array
(
[0] => stdClass Object
(
[ID] => 1
[name] => Mary Jane
...
37
votes
9answers
48k views
How do I count a JavaScript object's attributes? [duplicate]
Suppose I have the following object in JavaScript:
var object = {
"key1": "value1",
"key2": "value2",
"key3": "value3"
};
How do I find out how many values exist in the object?
37
votes
12answers
29k 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";
...
36
votes
7answers
62k views
How does a Java Arraylist contains() method evaluate objects?
Say i create one object and add it to my ArrayList. If I then create another object with exactly the same constructor input, will the contain() method evaluate the two objects to be the same? Assume ...
35
votes
4answers
6k views
What is the performance of Objects/Arrays in JavaScript? (specifically for Google V8)
Performance associated with Arrays and Objects in JavaScript (especially Google V8) would be very interesting to document. I find no comprehensive article on this topic anywhere on the Internet.
I ...
35
votes
2answers
4k views
Access / process (nested) objects, arrays or JSON
I have a (nested) data structure containing objects and arrays. How can I extract the information, i.e. access a specific or multiple values (or keys)?
For example:
var data = {
code: 42,
...
34
votes
6answers
33k views
Native JSON support in iOS?
Is there a class to parse JSON from a server in the iOS SDK? (similar to NSXML for XML and by extension RSS.)
33
votes
10answers
22k 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 ...
