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.
0
votes
1answer
11 views
why javascript object behave differently with and without module pattern in this example?
I have the following code with and without module pattern. I have given the results right next to the execution. in the module pattern, I am able to change foo and set_inner, while in the function ...
2
votes
8answers
60 views
What is the correct encapsulation in java object types
What is the correct encapsulation from below 2 classes in java?.I saw both these approches in many codes(mostly 1st approche). But seems like 2nd approach is the correct one.
import java.util.Date;
...
0
votes
1answer
23 views
Page load image size/position script randomly not running
I have a jQuery script that centers my logo on the middle of the screen. It is set up to run on page load and window resize. It works every time on window resize, and 9 times out of 10 on load. But ...
0
votes
0answers
20 views
Javascript Object and Variable w/ same name?
I'm a new coder trying hard to interpret some sample code.
In the project I'm looking at, there's both a 'chat' object and 'Chat' variable (both shown below).
On the same .js page where the 'chat' ...
0
votes
2answers
15 views
Python variable is not getting initialized with desired object, why?
So I am designing a battleship backend system that will be running on google apps engine... I just started yesterday and designed a framework for the game.
Unfortunately for me, I have not coded too ...
2
votes
2answers
27 views
Copy parameters to object instance with getters and setters
I have this constructor object:
function Bindable(obj) {
var prop;
for (prop in obj) {
this.__defineGetter__(prop, function () {
return obj[prop];
});
...
0
votes
2answers
34 views
Use of different object properties for same function
In the avatar generator I'm working on I have several button events that do the same thing but with different body parts. I don't want to have different functions doing the same thing, so I want to ...
3
votes
4answers
48 views
Storing Reference to function in object/variable
I have searched around for this but thus far have not been able to find a duplicate, I may be using the wrong keywords...
I am trying to temporarily change a function stored in an object, but am ...
1
vote
1answer
23 views
Internal State Changes After try{} Block
I'm working with Marpa::R2, and am trying to catch errors using Try::Tiny. I am puzzled because when I put the parsing code into a try block, the result of the value method is undef. Here's my code:
...
0
votes
2answers
34 views
javascript functions and objects using keyword 'this' does not work
my question here is about functions and objects in javascript. I have three questions that stems from one to other. In the below example, I try to access the value of 'a' in test, but I get undefined. ...
4
votes
4answers
76 views
How to get the object name from within the class? [duplicate]
I've got a simple class from which I create two objects. I now want to print the name of the object from within the class. So something like this:
class Example:
def printSelf(self):
...
0
votes
0answers
11 views
Play sound after object Augmented Reality display
How does that sound came out after the object was detected.? (FlarToolkit)
display code > Download Code
2
votes
0answers
16 views
How to fix Error: Trying to get property of non-object
I am getting the error: Trying to get property of non-object. I'm all out of ideas as to why I am getting this error. The error is for this line: $results = $quotes->return; Any help is ...
0
votes
3answers
35 views
How to ng-repeat into html table with multiple levels of json?
I have an object of social media stats. I'm trying to ng-repeat them into a table. Here's my plunker.
HTML:
<table>
<tr ng-repeat="(metric, metricData) in data">
...
0
votes
1answer
21 views
OpenGL - Import 3ds object and make it solid?
Basically, what I'm trying to do is, import the 3ds object(done) and make it look "solid" so that I can apply lightning to it
This is part of what I got:
this is where I load the object and put it ...
-1
votes
0answers
33 views
PHP static variables and objects
I have a function that is called once for initiation, and then later as a callback. I need some of the values that were defined in the initial setup to be accessed in the callback.
I am unsure of ...
1
vote
2answers
36 views
How to change the constructor of an object?
I am diving deeper into Javascript, and learning how constructor methods work.
In the code below, I would expect that I would be able to overwrite the constructor of an object, so that newly created ...
0
votes
2answers
41 views
what is use of referring object to an interface? [duplicate]
i have searched a lot but did not get exact answer for this Question hope i will get it from here.
what is exactly the use of referring object of a class to an interface instead of referring to the ...
0
votes
0answers
12 views
How can I link a static library to a cpp file?
I have a static library called X.a and a cpp file called Y.cpp. Y.cpp conatins the main function and uses the functions in X.a. How can I compile Y.cpp such that X.a is included and finally make a Z.a ...
-1
votes
3answers
37 views
Find an element in stdClass object array?
I need to find an element from an array. I know about in_array() method, but it does not work for this kind of array:
Array
(
[0] => stdClass Object
(
[id] => 7
)
[1] => ...
0
votes
1answer
29 views
Passing an Object to swing GUI
I have 5-6 GUIs(seperate classes) one opens another according to their functionality, every GUI takes an object inside, I pass the final Object in a flight booking system like this to my GUI when a ...
-3
votes
1answer
42 views
what is better…list of objects or map? [closed]
I have pairs of two values - they could be translated to a map where you put key, value or to a list where you put objects that have the fields that in 'map' world are key and value.
Which is better ...
0
votes
0answers
45 views
ObjectiveC - Extend already initialized object
Surely dumb question but I did a class called GLManagedObject that extends NSManagedObject.
I have a NSManagedObject already initialized that I'd like to extend with my custom methods:
...
0
votes
1answer
15 views
type error : object is not a function Backbone.js
I get this uncaught type error of object is not a function when trying to write a collection view. I have used the same code while doing the App but as am re doing the app with require.js, I get this ...
0
votes
1answer
25 views
Getting the wrapper object in java
I am instantiating a LinkTableColumn object.
When instantiating - I am overriding the method, which needs my instance of LinkTableColumn.
When writing the following - compiler returns: "No enclosing ...
-1
votes
1answer
48 views
objects constructor base class can't retrieve information [closed]
public class Conversion():currency{
public Conversion(string fromCurrency, string toCurrency, double amount,TextBlock output) : base(fromCurrency, toCurrency, amount,output)
{
...
2
votes
5answers
56 views
Which for loop should I use for JavaScript arrays and objects? [duplicate]
I always use for (i=0; i<array.length; i++) when looping through arrays.
I always use for (var i in object) when looping through object properties.
I can't use for (i=0; ... ) for object ...
0
votes
1answer
19 views
PYGAME Moving an object while having others move
Right now i have it so that a few objects will scroll accross the screen at different times and speeds, as well as a icon (hero) i can control with my arrow keys. However whenever I press a key, the ...
0
votes
1answer
13 views
PYGAME initialize multiple objects at different times.
I have a few objects scrolling across the screen. My only problem is that they start at the same time. I would like them to start at different times so that they arent always on the same X co ...
0
votes
2answers
20 views
Moving objects in PYGAME
I have the code to move 2 objects across my screen. What I want them to do is reach the other side, and restart back at the beginning, however they just cross the screen and disappear.
import pygame, ...
0
votes
4answers
64 views
PHP: How to add to an Object Class?
I just started to learn about Objects in PHP. I have the following example PHP for practice. I don't know if I have the structure set-up correctly or not. I want to be able to add to STOPS as ...
0
votes
1answer
33 views
C# Creating named object for each object in LDAP DirectorySearch to insert into SQL database
Ive created a Directory Searcher to pull multiple properties from each user.
objSearchADAM = new DirectorySearcher(objADAM);
objSearchADAM.PropertiesToLoad.Add("givenname");
...
0
votes
3answers
46 views
Reaching an object property from another property [duplicate]
I'm using an object structure for my js file and want to be able to assign one of the properties (which is an array) to one of the other properties:
AvGen = {
theBody: {
bodies: [
...
0
votes
4answers
49 views
how can I call a method from another class?
I have 3 files pos.h pos.cpp and main.cpp .... I am trying to call a function from pos.cpp in the main class for instance :
pos.h file
class pos {
public:
pos(); //defualut constructor
int ...
0
votes
5answers
89 views
Instantiating different class in constructor in Java
I am very new to Java have just started working on simple example programs.
How can I create class A's instance inside class B's constructor. For example, I want to create an array of objects of ...
0
votes
0answers
26 views
Typo3 6.0 - Content Object (Cobj) - Is it possible to display data from custom table?
I have a custom table "tx_myExt_domain_model_pub", and I want to display some records it contains.
For example, normally this is what I would do to display data from tt_content :
lib.footer = COA
...
0
votes
4answers
95 views
C#: Object Array with Constructor parameter
I have a class Measurement.
I have a constructor inside this class. as:
class Measurement
{
public Measurement(MainWindow mainWindow)
{
....
}
}
How can I ...
1
vote
1answer
53 views
iterate custom dictionary object
Recently learned a bit of object oriented in Python, and I'm trying to do the same things in VBA.
I manage to construct a parent object (PC) that contains a dictionary of children objects:hooks. ...
0
votes
1answer
26 views
Holding your objects in Matlab
I would like to store a collection of objects in an associative array with a key object pair. The goal is to to be able to later on lookup the object with the key.
I would expect I should be able to ...
0
votes
1answer
17 views
How do I specify .constructor.name on a custom object?
This question must be rather simple indeed, but I cannot google or duckduckgo the answer, probably because 99% of beginner tutorials involve creating a Person object with a name property (which is ...
0
votes
0answers
26 views
Extjs How to send data from form to MVC3 controller?
OK so I have problem with sending data from my form to controller action
Its looks like this
My controller Action
[HttpPost]
public ActionResult Create(ProductsType products)
{
try
{
...
0
votes
2answers
48 views
java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer in java 1.6
Even i'm casting Object into int, But this exception occur...
Actually my Hibernate-JPA method was return Object then i'm converting that Object into int...
Hear is my Hiberanate code..
...
0
votes
2answers
26 views
Simple javascript game: Object creation error due to constructor or conditional operators
I'm fairly new to java and I've been slowly building up a game. I know there are different ways to write objects, but after a recommendation, I built them like this model:
function object(x,y,z){
...
1
vote
4answers
39 views
Javascript parenthesis format
I'm a bit confused regarding the following parenthesis formats in Javascript:
(listeners = {})[obj._listenerId] = obj;
what does it mean when an object is surrounded by parenthesis?
same for the ...
0
votes
1answer
18 views
How to test for OAuth object?
I have a function that accepts an OAuth object:
$oauth = new OAuth("abc","def",OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_AUTHORIZATION);
function get_oauth_header($oauth, $header)
{
if ( ...
0
votes
1answer
28 views
Richtextbox Object reference not set to an instance of an object [closed]
Why am I getting this error? My program is using .NET4 Framework. And I got this error below: Object reference not set to an instance of an object.
if ...
1
vote
2answers
40 views
Accessing Object with Key as Number PHP
I have an object that looks like this:
stdClass Object
(
[page] => stdClass Object
(
[1] => stdClass Object
(
[element] => ...
2
votes
2answers
96 views
unable to understand these examples from the book javascript, The good parts [closed]
I am reading javascript: The good parts by Douglas Crockford. I am having difficulty in understanding a particular example and the explanation that author provides.
example 1: (pg 38)
var ...
0
votes
5answers
70 views
where in javascript is this kind of function assignment to variable useful?
I am reading the book. Javascript, The good parts by Douglas Crokford. There are examples provided in the book, but I am not able to understand where and how such examples could be useful in practice. ...
0
votes
4answers
31 views
Can't retrive parameters
I'm playing with OOP in PHP.
I have this code in my index.php
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
...




