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
2answers
22 views

A little JS help here please.. avoiding errors with undefined objects/variables (supression perhaps?)

i'm slightly annoyed at JS stopping at a simple UNDEFINED error.. I have a routine where i need to "set" variables based on what's already in the global scope targetID = myData.id; targetID = ...
0
votes
1answer
19 views

How to use arr.Contains with Object ArrayList

i have this Visual Basic .NET ArrayList Dim first As New ArrayList() first.Add({100, 200}) first.Add({500, 250}) first.Add({700, 200}) My question is, how i can ...
0
votes
4answers
49 views

python - another class inside constructor

I'm new to Python and I'm having a hard time understanding how I can do the following in Python (e.g how I would do in Java) class Person{ private String name; private Address address; public ...
0
votes
1answer
33 views

How do you access the properties of a related EmberJS object in a template?

I have defined these two objects in Ember: App.Course = DS.Model.extend({ name: DS.attr('string'), students: DS.hasMany('App.Student'), courseComponents: DS.hasMany('App.CourseComponent') ...
0
votes
1answer
35 views

c++ Error when passing class object into class function from main?

I am using a switch statement based off user's input to decide which function to call. I then want to pass a class object to a class function in which the code will be that fills in the details of ...
0
votes
4answers
57 views

javascript - combining two constructors

I'm trying to extend one constructor with another, using prototype: var objA = function(name){ var obj = this; this.test.name = name; window.setTimeout(function(){ ...
0
votes
4answers
31 views

Better way to print out data from only the first index in an array full of objects?

Option 1: $foo = array($obj1, $obj2, $obj3); for ($i = 0; $i < 1; $i++) { echo $foo[$i]->attribute; echo $foo[$i]->attribute2; } //shows obj1's attribute and attribute2 Option 2: ...
0
votes
0answers
31 views

Inserting data into an Oracle Database

Can I please have some help to insert some data into a table. I have created an Peripheral_objtyp object and then created a table from this object: create type Peripheral_objtyp as Object ( PeriphNo ...
0
votes
0answers
47 views

Creating objects to store properties [closed]

I have couple of UIViews with subviews. I want to access them from different places through a button. Until now, every time want to add the view and its subviews, I have to set all the properties of ...
0
votes
2answers
42 views

required: variable, found value - sorting a database

static void sort (Textbook [ ] info, int numEntries) { long tempIsbn = 0; String tempTitle = ""; String tempAuthor = ""; for (int i = 0; i < numEntries; i++) //sorts the array ...
1
vote
1answer
46 views

Couple several results in a single object

I'm writing a set of R functions that will be up online, publicly available, so I'd like to do a clean job here...for the first time. Basically there is a function f that receives a dataframe and ...
0
votes
1answer
74 views

Write and read multiple objects to file

I am desigining handrwriting aplication for android. I would like to write information (LogInfo class) to log file, every time user press Enter button. After, I would like to read the information. ...
0
votes
2answers
44 views

php function not returning class object

I have a DB class that I've created several functions in to return various values. One of the functions returns (or is supposed to) a "user" class object that represents a logged in user for the ...
0
votes
1answer
45 views

ios Restkit - Mapping objects with a list within another list

I'm trying to map objects using Restkit. I have no problems mapping normal JSON responses. In this case i have a problem because I want to map a response with this configuration: { "id": 161, ...
2
votes
5answers
60 views

Looping through a List of objects with the same base class and extracting a certain class?

For example, I have a base class Entity, then two sub classes that derive from this, LightEntity and PlayerEntity. I then have a List<Entity> Entities that holds LightEntitys and PlayerEntitys. ...
0
votes
1answer
56 views

SSIS convert object variable to string

I would like to store a single row result set to a variable. To able to do this I have to set my variable TxtNotes to Object. The issue I'm having is using this TxtNotes variable to use with nother ...
0
votes
1answer
43 views

Full copy small List to Container List, not only reference

I was hoping the new keyword, would not only create a new object, but also with unique memory references. If I do this, and after Clear the "tinyList", the bigList will also be cleared. ...
0
votes
0answers
31 views

Java create graphics object for drawing complex graphics from working method

I am somewhat new to java OO. Using the classic procedural aspects of Java are fairly straightforward, includingevent processing and even Swing. But I am having some trouble with objects.I have ...
0
votes
0answers
7 views

Relationship between two variations of the same comment object

Im seeing that through the Graph API I can get to a given comment one of two ways, the first having a two 'part' ID, the second having a three 'part' ID, like this; 10151333905645378_8516984 or ...
3
votes
1answer
52 views

How to embed PDF file with responsive width

I'm embedding pdf files using something like this: <div class="graph-outline"> <object style="width:100%;" data="path/to/file.pdf?#zoom=85&scrollbar=0&toolbar=0&navpanes=0" ...
0
votes
0answers
25 views

Facebook Open Graph Object without detail page per object

I'm trying to implement the facebook Open Graph but I'm facing some difficulties.. The documentation makes sense if you want to perform an action with an object, that you give a link to your object ...
0
votes
5answers
57 views

Accept different types in python function?

I have a Python function that does a lot of major work on an XML file. When using this function, I want two options: either pass it the name of an XML file, or pass it a pre-parsed ElementTree ...
-1
votes
3answers
28 views

JavaScript - Object failing

This is the main problem: var obj = { "22": false, "32": true, } console.log(obj.32) //<---- NOT WORKING??!?!?! Why can't I reach the part of the object?? I know you can't begin variables ...
1
vote
0answers
39 views

How to draw 10,000+ objects and move them and get 60fps+ in Vizard Python

I am trying to create a world in Vizard 4.0 that automatically generates 10,000+ objects in it. Once these objects are made, I want to fly through them or make them move at a certain speed in any ...
1
vote
3answers
48 views

How to get Enum object by value in C#?

I recently encountered a case when I needed to get an Enum object by value (to be saved via EF CodeFirst), and here is my Enum: public enum ShipmentStatus { New = 0, Shipped = 1, Canceled = 2 } ...
-4
votes
3answers
75 views

JavaScript object properties - connect them together?

I have 3 objects in an array. myArray = [ {name: "iPhone", link: "www.apple.com"}, {name: "Nokia", link: "www.nokia.com"}, {name: "Google", link: "www.Google.com"} ] How to make a loop and put ...
0
votes
1answer
36 views

Error: Cannot assign QObject* to QQuickItem*

I get this error when I try to show either a dialog or a popup in a tab. I don't understand why. In other apps I've made, it works, but I cannot see the difference between them. What am I doing ...
0
votes
4answers
36 views

Use variable to any type and check type of this in Java?

I have serious problems when implementing a java library for use in Android. I need global variables, I've solved this by applying Singleton. But now I need to use variables without specifying the ...
0
votes
0answers
63 views

Using a Javascript object in an if statement

Hi I'm fairly new to Javascript code and can't seem to get some code to work, any help would be really appreciated I'm trying to pass an object property into an if statement using a function argument ...
0
votes
3answers
22 views

Call base Class function

say I have : File BaseFoo.php : require('MyClass1.php') class BaseFoo(){ function check(){ //do somme stuff } function f1($o){ $c = new MyClass1(); return $c->f1($o); } ...
0
votes
0answers
20 views

How to realize that an Oracle SQL OBJECT VARRAY elements using as foreign key

I created an OBJECT type and a VARRAY: CREATE TYPE termek_adat IS OBJECT( termek_id number(3), termek_db number(3)); / CREATE type TERMEK_INF is VARRAY(10000) OF termek_adat; I created a table: ...
0
votes
2answers
58 views

Java Model Objects design

So I've been reading some Effective Java! And one of the most inspiring sections of the book is the Immutable Object/Builder section where Blosh writes about the "Builder" - class instead of just ...
-3
votes
1answer
21 views

Why Object class has no Thread methods

Why Object Class having wait(),notify(),notifyAll() methods. We need to extend Thread or implement Runnable to give Thread like behavior to a class . So why dint made them as part of Any of Thread or
0
votes
1answer
29 views

get MongoDB results as objects instead of array

I'm new to MongoDB, and I'm trying to get results in a different way. if I execute the query db.collection.find().toArray() I get something like: [ { "_id":"34234...", "first":"Mark", ...
0
votes
0answers
17 views

Interaction with collada loader

So I am doing an office work where a collada file(.dae) modeling our work place has been created. Well, I want to render this file on the web and so far I am successful. I also broke down the file ...
-1
votes
1answer
13 views

Inheriting variables from the main class to the extended class PHP

I'm attempting to make a child class (feeds) inherit a variable from the main class (controller). I have 3 files. They look as follows. CORE FILE: /* ----------------------------- * * LOAD THE ...
1
vote
2answers
44 views

Python Count Elements in a List of Objects with Matching Attributes

I am trying to find a simple and fast way of counting the number of Objects in a list that match a criteria. e.g. class Person: def __init__(self, Name, Age, Gender): self.Name = Name ...
0
votes
2answers
52 views

Write and read custom object to file android

I have the following problem. I am designing application for handwriting. I don't know how to write and read my Object (LogInfo) into a file. I know that I should override write and read methods, but ...
-6
votes
1answer
71 views

Why in OOP you do everything in objects? [closed]

We have started to work with PHP developer, i looked at his code and from my perspective this is waste of ink to write stuff like this. I personally dont do OOP. He never answered this question can ...
0
votes
1answer
38 views

window vs. application scope for Javascript variables

Can someone explain reasons for putting all variables with application scope vs. window scope? Is application scope ALWAYS better? performance? prevent naming collisons? other reasons? window ...
1
vote
1answer
24 views

Grabbing CreationDate of Defect Objects

How can I find the CreationDate of a Defect Object in rally? I have an array of defects objects, and I am able to find all the attributes of defects by doing the following in a loop: project = ...
1
vote
1answer
20 views

Questions on object declaring and a few image import statements for making a basic game

So my friend and I are making a very very basic game for fun, its going to be a top down (about 45 degree angle) where there is a lumberjack chopping down trees. Very basic and kinda lame I'm aware ...
-6
votes
0answers
21 views

How to insert an object to my database [closed]

How i can insert a full object into my databse? I am using java For example i have an object x of users with two parameters users(String nick, String pass)
0
votes
3answers
27 views

Which Collection framework to sort Objects

Here is a class Class Emp { String firstName; String lastName; int sal; ----------- } here I have a list of 100 employees, I want to sort the objects based on salary and ...
0
votes
2answers
60 views

How can I access the property in an object that has an unknown class?

My initial code was [[[show Episodes] lastObject] setDescription:nodeContent]; This gets the last object from the Episodes array and tries to set the episode's description property using ...
-2
votes
4answers
72 views

How to make sure String objects are garbage collected in Java

Here is the code snippet. method(){ String s1="abc"; String s2 = new String ("abc"); s1=null; s2=null; -------- --------- } At the end is s1 & s2 objects are ...
0
votes
1answer
32 views

PHP looping over object manipulate output based on object length

I have a PHP object that I am looping over, I know 2 things are definate with this object, I will never need to loop more than 12 times (1-12) and I will also always have to loop at least once. My ...
2
votes
1answer
44 views

Mockito for Objects in Scala

I'm using Scala 2.10, specs2 and Mockito. I want to mock scala.io.Source.fromURL(). The issue seems to be fromURL() is a function in io.Source's object. val m = mock[io.Source] m.fromURL returns ...
-1
votes
1answer
56 views

How to keep an object in memory in Scala?

Is it possible in Scala to create an object and keep it in memory? I hope this question doesn't exist yet. I have not found anything Scala specific at least. The problem is, that I want to read an ...
0
votes
3answers
34 views

setting a later value after constructing an object in object inheritance

Shape *shape[100]; Square sqr; void inputdata() { int len,width; cout << "enter length"; cin >> len; cout << "enter width"; cin >> width; sqr = Square(len,width,0); //---> ...

1 3 4 5 6 7 242