Tagged Questions

4
votes
2answers
102 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
9answers
144 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
3answers
45 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
3answers
129 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 ...
2
votes
2answers
460 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
35 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
85 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
355 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
190 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
60 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
32 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
489 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
342 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
144 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
3answers
52 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 ...