36
votes
8answers
10k views
What is the most efficent 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 = …
21
votes
28answers
1k 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 …
16
votes
15answers
2k 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
9
votes
9answers
250 views
OOP. Choosing objects
I'm a relative newbie to thinking in OOP terms, and haven't yet found my ‘gut instinct’ as to the right way to do it. As an exercise I'm trying to figure out where you'd create the line between …
9
votes
12answers
638 views
Is a function an example of encapsulation?
By putting functionality into a function, does that alone constitute an example of encapsulation or do you need to use objects to have encapsulation?
I'm trying to understand the concept of …
9
votes
2answers
3k views
Build a Basic Python Iterator
How would one create an iterative function (or iterator object) in python?
8
votes
18answers
2k 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 …
7
votes
9answers
670 views
What is the .NET object life cycle?
What is the object life cycle for an object in .NET?
From what I understand it is:
Object created - constructor called (if one exists)
Methods/Properties/Fields used
Object destroyed - Dispose …
7
votes
16answers
1k views
Polymorphism - Define In Just Two Sentences
I've looked at other definitions and explanations and none of them satisfy me. I want to see if anybody can define polymorphism in at most two sentences without using any code or examples. I don't …
7
votes
6answers
2k 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'
...
…
6
votes
5answers
131 views
Objective-C “messages” - what’s the right way to read it?
You can declare a method in objective-c and name each parameter twice, basically.
I get the idea that this is powerful, but I'm not quite sure how to use it yet...
When John Greets Kelly:
[ p …
6
votes
9answers
448 views
C# Class/Object visualisation software
In Visual Studio 2005 and prior you could export your code to Visio and view the relationships between the objects and what methods, properties and fields it had. This was great as it allowed you to …
6
votes
8answers
6k views
How to check if a variable is an object in Javascript?
I am wanting to see if a certain object has been loaded, if not, i want to load it like this:
If(!isObjectLoaded(someVar)) {
someVar= loadObject();
}
5
votes
8answers
151 views
What advantage is provided by object overloading in PHP?
PHP object overloading is explained here.
Basically it allows you to define some custom actions when an inaccessible object property or method is accessed.
What are some practical uses for this …
5
votes
7answers
376 views
Is everything an object in python like ruby?
I did google. I may not have searched right. I read on another Stack Overflow question/comment that Python was just like Ruby, as it relates to "everything's and object," and everything in Python …
