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.
33
votes
4answers
8k views
PHP5: const vs static
In PHP5, what is the difference between using const and static? When is each appropriate? And what role does public, protected and private play - if any.
32
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 ...
31
votes
8answers
25k 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)?
31
votes
5answers
2k 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 ...
30
votes
5answers
22k views
python create object and add attributes to it
I want to create a dynamic object (inside another object) in python and then add attributes to it.
I tried:
obj = someobject
obj.a = object()
setattr(obj.a, 'somefield', 'somevalue')
but this ...
30
votes
2answers
698 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 ...
30
votes
6answers
12k views
How default .equals and .hashCode will work for my objects?
Say I have my own object
public class MyObj { /* ... */ }
It has some attributes and methods. It DOES NOT implement equals, DOES NOT implement hashCode.
Once we call equals and hashCode, what are ...
28
votes
3answers
15k views
Check if a variable is a string
I am currently using the isNaN function to check if my variable is a string or an object. I just wondered if this is the wrong way of doing it because it does not seem to be working.
...
28
votes
13answers
36k views
Comparing object properties in c#
This is what I've come up with as a method on a class inherited by many of my other classes. The idea is that it allows the simple comparison between properties of Objects of the same Type.
Now, this ...
28
votes
4answers
7k views
What's the difference between an object initializer and a constructor?
What are the differences between the two and when would use an "object initializer" over a "constructor" and vice-versa? I'm working with C#, if that matters. Also, is the object initializer method ...
28
votes
6answers
17k views
Compare object instances for equality by their attributes in Python
What is the best way to compare two instances of some object for equality in Python? I'd like to be able to do something like
Example:
doc1 = ErrorDocument(path='/folder',title='Page')
doc2 = ...
28
votes
11answers
5k 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 ...
27
votes
5answers
6k views
Dictionary vs Object - which is more efficient and why?
What is more efficient in Python in terms of memory usage and CPU consumption - Dictionary or Object?
Background:
I have to load huge amount of data into Python. I created an object that is just a ...
27
votes
1answer
11k views
Parsing JSON in Excel VBA
I have the same issue as in Excel VBA: Parsed JSON Object Loop but cannot find any solution. My JSON has nested objects so suggested solution like VBJSON and vba-json do not work for me. I also fixed ...
26
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 ...
26
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 ...
26
votes
3answers
12k views
How to find Object ID in PHP?
I'm using PHP 5.2. I'd like to find a way to output a unique id for every object, so it's easy when looking over logs to see which objects are the same.
In Ruby, I'd just say object.object_id to get ...
25
votes
4answers
12k views
Memory management in Qt?
I'm quite new to Qt and am wondering on some basic stuff with memory management and the life of objects. When do I need to delete / destroy my objects? Is any of this handled automatically?
In the ...
24
votes
13answers
1k 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 ...
24
votes
10answers
60k 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();
}
24
votes
5answers
27k views
JavaScript check if variable exists (is defined/initialized) - Which method is better?
Which method of checking if a variable has been initialized is better/correct?
(Assuming the variable could hold anything (string, int, object, function, etc.))
if (elem) {
or
if (typeof(elem) !== ...
24
votes
5answers
29k views
How to synchronize a static variable among threads running different instances of a class in java?
I know that using the synchronize keyword before a method brings synchronization to that object.
That is, 2 threads running the same instance of the object will be synchronized.
However, since the ...
24
votes
2answers
654 views
Why is a class allowed to have a static member of itself, but not a non-static member?
class base {
public:
base a;
};
It gives compilation error.
class base {
public:
static base a;
};
whereas this code does not give compilation error
24
votes
10answers
27k views
How to Cast Objects in PHP
Ive some clases that share some attributes, and i would like to do something like:
$dog = (Dog) $cat;
is it posible or is there any generic work around?
Its not a superclass, or a interface or ...
23
votes
10answers
33k views
Using jQuery to compare two arrays
I have two arrays of JavaScript Objects that I'd like to compare to see if they are the same. The objects may not (and most likely will not) be in the same order in each array. Each array shouldn't ...
23
votes
17answers
4k views
Is everything in .NET an object?
Please help us settle the controversy of "Nearly" everything is an object (an answer to Stack Overflow question As a novice, is there anything I should beware of before learning C#?). I thought that ...
23
votes
21answers
10k 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 ...
23
votes
3answers
299 views
C# Differences between operator ==, StringBuilder.Equals, Object.Equals and Object.ReferenceEquals
I have a doubt regarding Object.Equals and Equals(object). I am giving my sample code below.
class Program
{
static void Main(string[] args)
{
var sb1 = new StringBuilder("Food");
...
22
votes
12answers
33k views
Convert Array to Object PHP
How can i convert an array like this to object?
[128] => Array
(
[status] => Figure A.
Facebook's horizontal scrollbars showing up on a 1024x768 screen resolution.
...
22
votes
3answers
18k views
make arrayList.toArray() return more specific types
so normally arrayList.toArray() would return a type of Object[]....but supposed it's an arraylist of object Custom, how do I make toArray() return a type of Custom[] rather than Object[]
22
votes
5answers
15k views
Serializing PHP object to JSON
So I was wandering around php.net for information about serializing PHP objects to JSON, when I stumbled across the new JsonSerializable Interface. It's only PHP >= 5.4 though, and I'm running in a ...
21
votes
9answers
7k views
Access the first property of an object
Is there an elegant way to access the first property of an object...
where you don't know the name of your properties
without using a loop like for .. in or jQuery's $.each
For example, I need to ...
21
votes
9answers
1k 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 ...
21
votes
7answers
14k views
Accessing object memory address
When you call the object.__repr__() method in python you get something like this back: <__main__.Test object at 0x2aba1c0cf890>, is there any way to get a hold of the memory address if you ...
20
votes
5answers
15k views
Combining JavaScript Objects into One
I have a function called "Colorbox" (jQuery plugin) that takes a number of parameters like so:
$(this).colorbox({
width : "500px",
height : "500px"
});
I have several different types of ...
20
votes
7answers
2k 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 ...
20
votes
6answers
1k views
val and object inside a scala class?
What is the difference between declaring a field as val, lazy val and object inside a scala class, as in the following snippet:
class A
class B {
val a1 = new A { def foo = 1 }
object a2 ...
19
votes
6answers
13k views
What is the best way to dump entire objects to a log in C#?
So for viewing a current object's state at runtime, I really like what the Visual Studio Immediate window gives me. Just doing a simple
? objectname
Will give me a nicely formatted 'dump' of the ...
19
votes
4answers
10k views
Why do this Ruby object have two to_s and inspect methods that do the same thing? Or, so it seems
Why do this Ruby object have two to_s and inspect methods that do the same thing? Or, so it seems.
The p calls inspect, and puts/print calls to_s for representing its object.
If I run
class Graph
...
19
votes
4answers
20k views
Getting an object from an NSSet
If you can't get an object with objectAtIndex: from an NSSet then how do you retrieve objects?
19
votes
9answers
3k 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 ...
19
votes
2answers
9k views
What is the 'cls' variable used in python classes?
Why is 'cls' used instead of 'self'?
Any help appreciated
19
votes
3answers
19k views
Use of Iframe or Object tag to embed web pages in another
In a web-based system I maintain at work that recently went live, it makes an Object element to embed a second web page within the main web page. (Effectively the main web page contains the menu and ...
19
votes
5answers
5k views
getting the last item in a javascript object
If I have an object like:
{ 'a' : 'apple', 'b' : 'banana', 'c' : 'carrot' }
If I don't know in advance that the list goes up to 'c', other than looping through the object, is there a way to get ...
19
votes
5answers
14k views
JavaScript - Get object's methods
Is there a method or propertie to get all methods from an object? For example:
function foo() {}
foo.prototype.a = function() {}
foo.prototype.b = function() {}
foo.get_methods(); // returns ['a', ...
18
votes
7answers
9k views
Sorting an array of objects in Ruby by object attribute
I have an array of objects in ruby on rails. I want to sort this array by an attribute of the object. Is it possible?
18
votes
2answers
6k views
Reverse of JSON.stringify?
I'm stringyfing an object like {'foo': 'bar'}
How can I turn the string back to an object?
18
votes
6answers
21k views
How do you get the “object reference” of an object in java when toString() and hashCode() have been overridden?
I would like to print the "object reference" of an object in Java for debugging purposes.
I.e. to make sure that the object is the same (or different) depending on the situation.
The problem is that ...
18
votes
2answers
29k views
Quick Java question: Casting an array of Objects into an array of my intended class
Just for review, can someone quickly explain what prevents this from working (on compile):
private HashSet Data;
...
public DataObject[] getDataObjects( )
{
return (DataObject[]) ...
18
votes
9answers
471 views
Multiple arguments vs. options object
When creating a JavaScript function with multiple arguments, I am always confronted with this choice: pass a list of arguments vs. pass an options object.
For example I am writing a function to map a ...