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.
13
votes
5answers
566 views
Can I store an Object inside a button in C#
I am creating Buttons dynamically in my code, is there a way I can store a custom object in my button so I can use it when I press this button ?
13
votes
3answers
7k views
Rails: Serializing objects in a database?
I'm looking for some general guidance on serializing objects in a database.
What are serialized objects?
What are some best-practice scenarios for serializing objects in a DB?
What attributes do you ...
13
votes
3answers
186 views
accessing a python int literals methods
Since everything is an object in python, even literals, we are typically allowed to call methods directly on a literal.
ex:
'hello'.upper()
In theory, it seems like the same thing should be ...
13
votes
3answers
2k views
Delphi - Create class from a string
I got code like this
name := 'Foo';
If name = 'Foo' then
result := TFoo.Create
else if name = 'Bar' then
result := TBar.Create
else if name = 'FooFoo' then
result := TFooFoo.Create;
Is there ...
13
votes
4answers
3k views
Creating anonymous objects in php
As we know, creating anonymous objects in JavaScript is easy, like the code below:
var object = {
p : "value",
p1 : [ "john", "johnny" ] } ;
alert(object.p1[1]) ;
Output:
an alert is ...
13
votes
3answers
15k views
Best way to check if an PowerShell Object exist?
I am looking for the best way to check if an Com Object exist.
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Navigate("http://www.stackoverflow.com")
$ie.Visible = $true
$ie -ne $null ...
13
votes
2answers
610 views
Instantiating immutable paired objects
Is it possible to create a class with an immutable reference to a partner object, or does it have to be a var that I assign after creation?
e.g.
class PairedObject (p: PairedObject, id: String) {
...
13
votes
3answers
4k views
get_object_vars() vs. cast to array
Are there any differences between get_object_vars($obj) and (array) $obj ?
Both seem to return the public properties of the object.
Which is better?
13
votes
3answers
6k views
JavaScript: Object Rename Key
Is there a clever (i.e. optimized) way to rename a key in a javascript object?
A non-optimized way would be:
o[ new_key ] = o[ old_key ];
delete o[ old_key ];
Thanks in advance for your help.
13
votes
5answers
3k views
Out of memory when creating a lot of objects C#
I'm processing 1 million records in my application, which I retrieve from a MySQL database. To do so I'm using Linq to get the records and use .Skip() and .Take() to process 250 records at a time. For ...
12
votes
6answers
3k 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 ...
12
votes
10answers
513 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 ...
12
votes
12answers
28k views
12
votes
6answers
2k views
Returning a “NULL reference” in C++?
In dynamically typed languages like JavaScript or PHP, I often do functions such as:
function getSomething(name) {
if (content_[name]) return content_[name];
return null; // doesn't exist
}
...
12
votes
10answers
2k views
What is best practice in converting XML to Java object?
I need to convert XML data to Java objects. What would be best practice to convert this XML data to object?
Idea is to fetch data via a web service (it doesn't use WSDL, just HTTP GET queries, so I ...
12
votes
4answers
7k views
What does the registerNatives() method do?
In java, what does the private static method registerNatives() of the Object class do?
12
votes
8answers
4k views
Convert URL parameters to a javascript object
I have a string like this:
abc=foo&def=%5Basf%5D&xyz=5
(it comes from ajaxOptions.data parameter from the ajaxComplete event)
How can I convert it into a javascript object like this:
obj = ...
12
votes
3answers
3k views
What's wrong with adding properties to DOM Element objects?
I've been looking for a straight answer for this (I can think of lots of possiblities, but I'd like to know the true reason):
jQuery provides a .data() method for associating data with DOM Element ...
12
votes
4answers
7k views
How i can use Javascript in Java
I wanted to build a small product in which i wanted to give a kind of feature in which user can write a script language kind of javascript.
And also from javascript able to build objects and calling ...
12
votes
1answer
12k views
PHP - find entry by object property from a array of objects
The array looks like:
[0] => stdClass Object
(
[ID] => 420
[name] => Mary
)
[1] => stdClass Object
(
[ID] => 10957
...
12
votes
5answers
3k views
PHP object literal
In PHP, I can specify array literals quite easily:
array(
array("name" => "John", "hobby" => "hiking"),
array("name" => "Jane", "hobby" => "dancing"),
...
)
But what if I ...
12
votes
2answers
3k views
How do I call a Scala Object method using reflection?
say, I have the following:
trait SomeTrait {
def someMethod: String;
}
object SomeObject extends SomeTrait {
def someMethod = "something";
}
I would like to call "someMethod" using ...
12
votes
4answers
15k views
How to sort a Javascript object, or convert it to an array?
I have some JSON data that I get from a server. In my Javascript, I want to do some sorting on it. I think the sort() function will do what I want.
However, it seems that Javascript is converting the ...
12
votes
2answers
442 views
How does extending classes (Monkey Patching) work in Python?
class Foo(object):
pass
foo = Foo()
def bar(self):
print 'bar'
Foo.bar = bar
foo.bar() #bar
Coming from JavaScript, if a "class" prototype was augmented with a certain attribute. It is known ...
12
votes
1answer
28k views
Encoding Javascript Object to Json string
I want to encode a javascript object into a json string and I am having considerable difficulties.
The Object looks something like this
new_tweets[k]['tweet_id'] = 98745521;
new_tweets[k]['user_id'] ...
12
votes
2answers
4k views
Can PHP instantiate an object from the name of the class as a string?
Is it possible in PHP to instantiate an object from the name of a class, if the class name is stored in a string?
12
votes
8answers
5k views
Get Instance ID of an Object in PHP
I've learn a while ago on StackOverflow that we can get the "instance ID" of any resource, for instance:
var_dump(intval(curl_init())); // int(2)
var_dump(intval(finfo_open())); // int(3)
...
12
votes
2answers
856 views
Is it possible to get the non-enumerable inherited property names of an object?
In JavaScript we have a few ways of getting the properties of an object, depending on what we want to get.
1) Object.keys(), which returns all own, enumerable properties of an object, an ECMA5 ...
12
votes
7answers
6k views
Howto remove unused objects from a git repsitory?
I accidentally added, committed and pushed a huge binary file with my very latest commit to a Git repository.
How can I make Git remove the object(s) that was/were created for that commit so my .git ...
12
votes
2answers
5k views
Track all object references in C#
Is it possible to list all references of an object, while debugging in Visual Studio. I am using C#. I am looking for something similar to what GC does during garbage collection.
12
votes
1answer
3k views
jQuery add() function and the context of jQuery objects
Given the following HTML example...
<div id='div1'>div one</div>
<div id='div2'>div two</div>
...I found that the following jQuery code...
$('#div1').click(function() {
...
12
votes
5answers
281 views
What are 'partially overlapping objects'?
I was just going through all the possible Undefined Behaviours in this thread, and one of them is
The result of assigning to partially overlapping objects
I wondered if anyone could give me a ...
11
votes
16answers
12k views
c++: when to use pointers?
After reading some tutorials I came to the conclusion that one should always use pointers for objects. But I have also seen a few exceptions while reading some QT tutorials ...
11
votes
5answers
4k views
Do Ruby 'require' statements go inside or outside the class definition?
When using class files in Ruby, do you put the 'requires' statements at the top of the file, or inside the class definition?
11
votes
4answers
7k views
PHP - recursive Array to Object?
Is there a way to convert a multidimensional array to a stdClass object in PHP?
Casting as (object) doesn't seem to work recursively. json_decode(json_encode($array)) produces the result I'm looking ...
11
votes
9answers
2k views
Casting entire array of objects to string
I have an array of type object which are strings. I would like to convert them to strings. What would be the quickest way of doing so?
Eg.: I have this object[] and want to convert it so it is this ...
11
votes
3answers
5k views
Determine whether JSON is a JSONObject or JSONArray
I am going to receive either a JSON Object or Array from server, but I have no idea which it will be. I need to work with the json, but to do so, I need to know if it is an Object or an Array.
I am ...
11
votes
1answer
8k views
Is it possible to delete an object's property in PHP?
If i have an stdObject say, $a.
Sure there's no problem to assign a new property, $a,
$a->new_property = $xyz;
But then I want to remove it, so unset is of no help here.
So,
$a->new_property = ...
11
votes
11answers
2k 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 ...
11
votes
6answers
17k views
how to find and return objects in java hashset
According to the HashSet javadoc, HashSet.contains only returns a boolean. How can I "find" an object in a hashSet and modify it (it's not a primitive data type)?
I see that HashTable has a get() ...
11
votes
4answers
12k views
jQuery recursive iteration over objects
The other day I thought I saw an object iterator in jQuery that had a flag that could be set to recursively iterate over child objects. I thought it was part of jQuery.each(), but now I don't see that ...
11
votes
2answers
11k views
How to create gradient object with Raphael
I was trying to use Raphael JS graphics library. I would like to use the attribute gradient which should accept an object. Documentation says to refer to SVG specs. I found the gradient object in SVG, ...
11
votes
3answers
2k views
Creation of Objects: Constructors or Static Factory Methods
I am going through Effective Java and some of my things which I consider as standard are not suggested by the book, for instance creation of object, I was under the impression that constructors are ...
11
votes
2answers
3k views
Objective-C: Instance Variable in Category
I am just asking whether it was possible to add an instance variable via a category. My special problem is, that I need to add an NSIndexPath property to an ASIHTTPRequest object but I don't wanna ...
11
votes
1answer
1k views
What is the difference between pickle and shelve?
I am learning about object serialization for the first time. I tried reading and 'googling' for differences in the modules pickle and shelve but I am not sure I understand it. When to use which one?
...
11
votes
4answers
225 views
What is “object” in “object file” and why is it called this way?
I was asked a question: "What is an 'object file'?".
After looking at Wiki, I only know that it contains objects.
But what are those objects and why someone called them that way?
11
votes
10answers
446 views
Getting my head around object oriented programming
I am entry level .Net developer and using it to develop web sites. I started with classic asp and last year jumped on the ship with a short C# book.
As I developed I learned more and started to see ...
11
votes
4answers
246 views
how to have Javascript Object creation pattern with Reusable methods and private properties?
Considering object creation patterns with private properties, one way to do is :
function MyStack (){
var list = [],
index = 0;
this.push = function(val){
return ...
11
votes
1answer
210 views
Is there a standard process to save Excel File Formatting/Settings into an Object?
It could be cumbersome at times to maitain Excel Workbook's formatting/settings when heavy backend, front end work loads are done. At times (even frequently) workbooks were crashed. But I can't recall ...
10
votes
3answers
36k views
jquery/javascript convert date string to date
I have a date string "Sunday, February 28, 2010" that I would like to convert to a js date object formatted @ MM/DD/YYYY but don't know how. Any suggestions?

