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)

0
votes
1answer
26 views

Rainbow Effect not working correctly with A hrefs

I have a code that I am trying to write for a website host, a member asked for some support. And I wrote this, and it works only for Text but with a hrefs it ruins the markup. ...
-1
votes
1answer
25 views

Creating Toolbox objects (e.g. Labels etc.) in code [closed]

I'm new at using Microsoft Visual Studio, but I have some knowledge about C++ language. I'd like to create object can be found in Toolbox, such as Labels, Button, etc., but without putting them onto ...
0
votes
0answers
16 views

How do I change the same parameter on multiple objects efficiently in Blender?

Starting with a single cube, I have changed some properties (material, color, reflection attributes), and then duplicated the object into a dozen cubes, placing them in the scene. After rendering, I'd ...
3
votes
3answers
18 views

Uncaught typeerror: Object #<object> has no method 'method'

So here's the object 'playerTurnObj' function playerTurnObj(set_turn) { this.playerTurn=set_turn; function setTurn(turnToSet) { this.playerTurn=turnToSet; } function getTurn() ...
4
votes
2answers
46 views

Can I get to the object of a property if I have a reference to the property only?

I have the reference to a property of an object in a variable,is it possible to access the object to which this property belongs?
3
votes
2answers
80 views

Wrapping an accessor method for a global object in some other function

I do a lot of stuff specifically with PHP and WordPress, and I've come across this concept quite often throughout the WordPress application; although, this question isn't specific to WordPress. I'll ...
0
votes
1answer
16 views

rails persist objects over requests in development mode

I am trying to interact with Matlab.Application.Single win32ole objects in my rails application. The problem I am running into is that while I am developing my application, each separate request ...
0
votes
3answers
77 views

Objective-C methods not running

I'm messing around with using objects to launch background threads, however when I call an objects method to call the method that will spawn a background thread, nothing happens. I'm a bit puzzled as ...
0
votes
0answers
12 views

C# keeping values of object pointers for further retrieving

Hope someone can help me with this. I have a method (user_login) than prompts for a user to login and then generates and returns an invoice and a token. The problem is that if the user has already ...
-1
votes
3answers
38 views

“Call to a member function on a non-object” on existing object [duplicate]

I'm working with a few different classes across different php files. For some reason, the first time I call my function, it works correctly, but the second call results in an error. This is my ...
-3
votes
1answer
40 views

Converting generic Object to instanceof custom Object [closed]

Here is my code: function Apple (taste) { this.t = taste || null; } var x = new Apple("yummy"); var str = JSON.stringify(x); var obj = JSON.parse(str); console.log(str); console.log(obj); ...
0
votes
2answers
27 views

JavaScript property & field reflection

I came across this little snippet of code for property reflection in JavaScript: function GetProperties(obj) { var result = []; for (var prop in obj) { if (typeof obj[prop] !== ...
0
votes
3answers
67 views

Which way to make this object class

I am creating a Character object that has an Inventory object. In the Inventory object you got a list of InventoryItem object and in every InventoryItem object you have an Item object. Character ...
0
votes
0answers
10 views

php var_export object - forgot to serialize before storing

I have a project where last developer forgot to serialize objects before storing them into database. Now I have: stdClass::__set_state(array( 'id' => '1', 'name' => 'John', ...
0
votes
1answer
30 views

Javascript object recursive assignment

I have the next Object: var END_POINTS = { list: { members: { show: {} }, subscribers:{ show:{}, destroy: ...
-1
votes
3answers
27 views

two mysqli connections simultaneously

I tried to alter OOP script presented here: to handle two databases at once (depending on function needs), but it seems not to work at all. I get an error message: mysqli_query() expects at least 2 ...
1
vote
3answers
20 views

How to extend Object in JavaScript without losing the original functionality

I have a JavaScript object defined like so: var Object = (function () { function Object() { this.id = RandomNumber(); } // Custom Object.prototype / Object impementations here... ...
0
votes
3answers
24 views

Class variables in JavaScript and setInterval

Since I need to pass an anonymous function to setInterval if I want parameters, I tried using the below code. Originally I had it calling this.countUp, but as that returned NaN I did some reading and ...
-1
votes
3answers
35 views

Getting value from other parallel object

I have object with 2 objects inside : o = { center : { x:1, y:1 }, startPosition : {x:center.x, y:center.y} } And of course I have an error : ReferenceError: center is not defined How ...
0
votes
1answer
52 views

PHP 'stdClass not an object'

Fetching rows as objects from a MySQL database via mysqli::fetch_object (all PHP5), they look like this on var_dump: class stdClass#5 (5) { public $id => string(2) "23" public $started => ...
3
votes
5answers
62 views

Javascript perform .join on value in object array

If I have an array of strings, I can use the .join() method to get a single string, with each element separated by commas - like so: ["Joe", "Kevin", "Peter"].join(", ") -> "Joe, Kevin, Peter" I ...
1
vote
1answer
19 views

Matlab object instance update

Problem description I'm trying to construct an object of the class Analysis with a variable amount of subclasses Resset stored as a structure in the Analysis property ressets (see Matlab code below). ...
0
votes
2answers
61 views

C calling a class function inside of another Class that is currently an Object

new here, so be gentle, I'm currently doing my Major Project for my course and, I'm not asking for homework to be done for me, i just can't wrap my head around a strange problem i am having and have ...
0
votes
0answers
37 views

NoSuchAlgorithmException: Algorithm PBKDF2WithHmacSHA1 not available

I tried to hash password using a oracle Java object. The Java code works fine in eclipse. But when invoked from a Oracle function, the following exception is thrown. I'm using toad. How to fix this ...
0
votes
0answers
2 views

Facebook open graph Identical objects displaying different

I've created two custom action->object pairs in my app with identical structure (except each one has a own one custom property). 1) action: 'Rescue' -> object: 'Guardian' Guardian have custom ...
-2
votes
0answers
28 views

Object Oriented Programming: Trade off between number of objects and size of objects [closed]

I am working on an object oriented Client-Server Model. The server sends some attributes and client parses these attributes to create objects. To improve performance, I thought of reducing the number ...
0
votes
1answer
20 views

How would I correctly implement parcel/parcelable in a Hash of objects in Java/Android

I have the following classes: Experiment and Measurements. I pass a HashMap containing Experiment objects as a value, and their Experiment.getExperimentName as a key, between Android activities. ...
0
votes
0answers
21 views

Convert from Object to Dictionary

can anyone tell me the correct way to convert from Object to Dictionary I used this way. public void ReceiveFriedns(Object obj) { Dictionary<string,object> ht = new ...
1
vote
1answer
30 views

Object sent - autorelease too many times, getting this leak for my iPhone app?

I am getting too many Object sent - autorelease too many times, this memory leak for my iPhone app and dont know how to resolve it http://screencast.com/t/fPzMNewvq Above is screen shot for the same. ...
0
votes
3answers
38 views

how can i make this jsonArray form?

I want to get this (four keys & values in one object): [{"sms":"Y","email":"Y","phone":"Y","oto":"Y"},{"sms":"N","email":"N","phone":"N","oto":"N"}] but this is result : ...
-1
votes
0answers
41 views

Accessing Object elements by index in JavaScript

I'm new to JavaScript and really confused by the Object type. My problem is in Unity3D, but I think this is a general JavaScript problem. I'm trying to communicate between browser JavaScript and ...
1
vote
3answers
26 views

return serialized object (if it exists) otherwise return new instance?

I want to get a serialized object by calling this method: ArrayList<String> myArrayList = (ArrayList<String>) getSerializedObject(ArrayList.class, "arraylist.ser"); If the specified ...
-2
votes
1answer
55 views

C++, how to delete member **object (using delete)

I have an **object (**personnel) as a member inside(composition) another object, I want to free the memory that **personnel points to and point it to another **temp (personnel=temp), without deleteing ...
0
votes
0answers
36 views

Laravel 3/4 Save DB object in Database

I am trying to figure out how to build a query with laravel's query builder, and save the query builder object. Something like this: // Build Query $query = DB::table('users'); ...
1
vote
3answers
35 views

Check if an object has a user defined prototype?

Simply put can I check if an object has a user defined prototype? Example; var A = function() {}; var B = function() {}; B.prototype = { }; // Pseudocode A.hasUserPrototype(); // False ...
5
votes
2answers
68 views

Advantage of using method in OOP Javascript

I came across a JS file which was built in a strange manner: var modal = (function(){ var method = {}; // Center the modal in the viewport method.center = function () {}; // Open the modal ...
-3
votes
5answers
90 views

Link two objects in C++

I want to construct two different classes point and triangle? The implementation of the classes is that I will have an array of points, then I will create an array of triangles so each triangle in ...
0
votes
2answers
30 views

Find and fill XML nodes from a PHP object

First of all, sorry about my english. So, I have an XML with a lot of nodes, like: <first> <second> <third/> <fourth/> </second> ...
0
votes
0answers
9 views

Duplicate or False Objects in List Python

The following code is not correct. Can you tell me why i get a list with elements that should be empty .. i = 0 for post in posts: posts_complete[i].post = post print(not ...
0
votes
1answer
31 views

Javascript Looping through object values and changing the css based on value

I am writing a script that loops through an object to first get the elements and then I am trying to loop through the value of the elements so i can change the CSS. Here is the script: ...
-4
votes
3answers
48 views

PHP Error: Cannot use object of type stdClass as array (array and object issues) [duplicate]

i was trying to copy this code. <?php foreach ($products as $product){ $id = $product['id']; $name = $product['name']; $description = $product['description']; $price = $product['price']; ...
0
votes
0answers
8 views

Datagrid show name of my objects .NET, how can i do to show the values from my objects?

i have a problem. i have a list of objetcs an some of my objects have inside others objects, and when i put this list into my DataSource of the grid i have this: I USE .NET 2010 my question is, how ...
0
votes
3answers
44 views

How to pass object between several views in storyboard, iOS Dev

I have searched for this but the answer is too simple to satisfy me :( I want to pass a NSManagedObjectContext from TabBarController to almost every view controllers in my app. In detail, my ...
0
votes
2answers
53 views

jQuery remove object from object collection

I have the following example code, creating a object collection. How can I remove one of the objects? (e.g. $TestList would look as though the "delete me" item was never there. I've tried .remove, ...
0
votes
3answers
72 views

How do I get data from this object?

Here's the object that's returned. I ultimately need to get two things: @token and @expires_at. How would I get them from this? @my_object = access_token(params[:provider]) Then outputs: ...
0
votes
1answer
42 views

python nested generator objects content

I have a problem with Python. I'm trying to understand which are the information stored in an object that I discovered be a generator. I don't know anything about Python, but I have to understand how ...
0
votes
2answers
35 views

How to get height=100% on <object> Embed

I'm trying to insert the following code but it is not working. I am not able to get 100% height with this. Can anyone help me? Thanks! <body style="overflow:hidden;"> <TABLE align=left ...
0
votes
1answer
53 views

Returning Object That Has Biggest Value using comparator

Suppose we have a Java type called Contract which represents business contracts. Among the method headers in class Contract are the following: public Date finish() returns an object representing ...
0
votes
0answers
33 views

how to use the PyObject_CallMethod send the object from C++ to the python

When I write the C++ call python , now I have a object in the C++, how to send this object to the python, and in the python can use this object: because the PyObject_CallMethod can send the int , ...
1
vote
1answer
47 views

Avoid using instanceof when dealing with instances of java.lang.Object

I do have a few instanceof checks in ym code, but there are some I wish I could avoid. Usually whenever there is more than one if statement, for example: public void setValue(Object newValue) { ...

1 2 3 4 5 243