Tagged Questions

4
votes
2answers
110 views

How can I instantiate an object knowing only its name? [closed]

Possible Duplicate: Is there a way to instantiate objects from a string holding their class name? In C++, I want to have my user enter the object type name to be created at run-time, and, ...
3
votes
3answers
155 views

Instantiate class from name in MATLAB

I'm trying to list classes I created in some folder in my Matlab folder - using only their name (class name) as an example, I have a class called 'SimpleString' - and I'm aiming to instantiate an ...
3
votes
9answers
148 views

Create an object in the constructor or at top of the class

which declaration/instantiation is better and WHY ? public class MainWindow { private Test _test; public MainWindow() { _test = new Test(); } } OR public class MainWindow { ...
3
votes
4answers
2k views

PHP: How to instantiate a class with arguments from within another class

I am in a situations where i need to instantiate a class with arguments from within an instance of another class. Here is the prototype: //test.php class test { function __construct($a, $b, $c) { ...
2
votes
1answer
54 views

Accessing a method before instantiating

I want to access class InternalNode's getSurplus() method. I have getSurplus() defined in a "InternalNode.h" file. "..." means other code. How do I refer to the method getSurplus from the ...
2
votes
3answers
50 views

Creating an array of instantiated class objects

So I have a class (myClass) that I've created in my C# application. When working with arrays of this class, I have been thinking that it's rather annoying having to write a loop to fill an array of ...
2
votes
2answers
481 views

PHP: Instantiate class by reference?

I'm converting some old PHP 4.x code for PHP 5.3. I've come across the following, and I'm not sure what it does. $variable =& new ClassName(); What is the difference between that, and: ...
1
vote
4answers
39 views

Instantiating object from inside the main of that class in Java

I was looking through my OOP class documentation and I found this example: class Student { private String name; public int averageGrade; public Student(String n, int avg) { name ...
1
vote
6answers
91 views

php find where class is instantiated from

I am having some issues on a large-ish project, and it boils down to a particular class is somehow being instantiated multiple times, which is causing un-needed replication / overheads. Is there any ...
1
vote
2answers
374 views

child elements of MXML class not appearing

I'm working on a simple task/calendar tool where tasks can be added dynamically to a canvas. Here is the main application as defined in Main.mxml, which is essentially just a Canvas and a button for ...
1
vote
1answer
196 views

Strategy to instantiate classes in a PHP Project

I'm building an application with a pattern that is something like the MVC and I need to know how to deal with a specific situation. I will explain visualy. I have the project folder this kind of ...
0
votes
2answers
78 views

How can I use 1 notifyIcon between multiple forms?

I have a notifyIcon added to my main form of a project. I have other forms in the project that I want to be able to use the notifyIcon though which is proving difficult. What would be the best way to ...
0
votes
0answers
36 views

How to copy a class in c# into a similar class but some class properties need to be instantiated

How do I copy a class in c# into a similar class but some destination public class properties need to be instantiated? Both classes were created using the xsd.exe tool. The class is complex (I only ...
0
votes
2answers
512 views

PHP custom class loader

i made a custom class loader function in php something like.. load_class($className,$parameters,$instantiate); its supposed to include the class and optionally instantiate the class specified the ...
0
votes
2answers
351 views

Programmatically choose the class to be instantiate

I am currently playing around with VB.Net using Visual Studio 2010 (.Net 4.0) and I need your help to create a collection class (let's call it 'cl_MyCollection') with a constructor that accepts two ...
0
votes
2answers
145 views

php - any way to access properties of an already instantiated class from another script without reinstantiating it?

I have page main.html which is a client application for a specific server. The main.php is an window with three frames. main.html <frameset frameborder=no border=0> <frame name='top1' ...
-1
votes
1answer
15 views

Instantiating a class within a recursive function in PHP

I've been creating a script using PHP and seem to have hit a brick wall at the moment with it. I'm trying to call a variable from another file which is within a class, so I went about it by including ...
-1
votes
3answers
57 views

PHP--> Created a class, but assigning values to the properties fail

I'm creating a class and attempting to use it. However, the values I set are not being retained. Please advise! Here's my class definition: <?php class MemberData { var $mdId; var $mdFname; var ...