1
vote
9answers
120 views
what is an abstract data type in object oriented programming?
what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear
0
votes
1answer
27 views
Finding the number of USER Objects used by a process.
I'm investigating a possible memory leak which is causing an "Error creating window handle" Win32Exception in my .NET 2.0 WinForms app. This is related to number of Handles and nu …
1
vote
7answers
146 views
Self Instantiation in Java
How do I self-instantiate a Java class? I should not use any file other than its class file. Also assume that after the line where I initialized the NAME variable, they don't know …
4
votes
6answers
179 views
Maintain reference to any object type in C++?
I'm trying to teach myself C++, and one of the traditional "new language" exercises I've always used is to implement some data structure, like a binary tree or a linked list. In Ja …
0
votes
1answer
82 views
Help with classes in php
class Controller {
protected $_controller;
protected $_action;
protected $_template;
public $doNotRenderHeader;
public $render;
function __construct($con …
0
votes
3answers
65 views
OO PHP protected properties not available in foreach loop?
Hi,
I have a validation class which I would like to use to check all values in my application are within allowed constraints.
I am passing an object to a static function within th …
0
votes
3answers
36 views
How to get the text value of an object?
How do I get the text value of an object in order to display it in a table? Other posts say objects are not NSStrings and you need to ask the object for its text. But how? The er …
0
votes
4answers
80 views
JavaScript objects
What are the differences between these two codes in JavaScript?
var obj = new Object();
obj.X = 10;
obj.Y = 20;
And,
var obj = {X:10, Y:20};
0
votes
3answers
33 views
Assigning variables to objects in JavaScript
Hey there,
I am using the following method to basically create a JSON string.
var saveData = {};
saveData.a = 2;
saveData.c = 1;
However the .a and .c don't cut it for what I n …
0
votes
5answers
77 views
Declaring an object at class level, problems. iPhone Objective-C
Objective C on iPhone:
I am attempting to declare the following object at class level so that i do not have to re-connect this socket every time I write something to it. (Writing t …
0
votes
2answers
104 views
Array of objects on stack and heap
Consider the following code:
class myarray
{
int i;
public:
myarray(int a) : i(a){ }
}
How can you create an array of objects of myarray on stack and how c …
0
votes
1answer
20 views
Converting Objects to XML representations in C#
I have a dynamic linked library written in C# 3.0. This library has a small set of public classes that I want to make XML representations for. The idea is to allow "saving/loading" …
1
vote
1answer
64 views
Reference or tutorial to clarify object reference confusion
Working with my ongoing TFrames-based component set project, I'm coming across various instances where I am wanting to replace one of the TFrame's components (usually non-visual) …
1
vote
2answers
18 views
addEventListener only works on last object.
In the following code, it seems I only get the 'otherboxclick' call for the last box added (b1). If I change the order the boxes are added, it's always just the last one that work …
1
vote
2answers
68 views
Easy way to concatenate list of strings into a comma-separated strings, where strings are members of an object?
Say I have a List(Of Tag) with Tag being an object. One member of Tag, Tag.Description, is a string, and I want to make a comma-separated concatenation of the Description members. …
