Tagged Questions
The instantiate tag has no wiki summary.
14
votes
7answers
6k views
How does one instantiate an array of maps in Java?
I can declare an array of maps using generics to specify the map type:
private Map<String, Integer>[] myMaps;
However, I can't figure out how to instantiate it properly:
myMaps = new ...
5
votes
2answers
110 views
Creating an instance of a C++ class and calling methods on it in Python
I am trying to use a C++ library in my python app. I can load the dll in python but could not find any solution on how to create an instance of a class that is inside that c++ dll and invoke methods ...
5
votes
2answers
449 views
How do I use a .NET class in VBA? Syntax help!
ok I have couple of .NET classes that I want to use in VBA. So I must register them through COM and all that. I think I have the COM registration figured out (finally) but now I need help with the ...
5
votes
4answers
1k views
Instantiate Generic Type in C# class
Pretty basic question in C#,
class Data<T>
{
T obj;
public Data()
{
// Allocate to obj from T here
// Some Activator.CreateInstance() method ?
obj = ???
}
...
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, ...
4
votes
2answers
339 views
C++ Instantiate an object from a class two different ways
I'm pretty sure this has been asked before, but I can't for the life of me find it via search.
So here it goes:
What's the difference between:
MyObj myObj;
and
MyObj myObj = MyObj();
I believe ...
4
votes
2answers
3k views
WPF Instantiate User control programmatically to render it as PNG
I want to instantiate a user control programmatically in a DLL to save it afterwards as PNG file. This is generally no problem with PngBitmapEncoder and RenderTargetBitmap.
This are my questions:
...
3
votes
1answer
6k views
Android Runtime Exception: Unable to instantiate activity componentInfo?
i am running a listfragment prog and at runtime i got the below error.
Error:
02-09 09:03:40.213: ERROR/AndroidRuntime(572): java.lang.RuntimeException: Unable to instantiate activity ...
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
2answers
387 views
How can I use Scala's Manifest class to instantiate the erased class at runtime?
I'm doing some WebDriver+PageObject stuff.
(If your not familiar with PageObjects, this is a pattern where you have a class representing each page on your site which exposes all the functions of the ...
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
41 views
Enums that cross reference each other produce different results depending on order called
I have two enums that cross reference each other. Each one has a constructor that has a parameter for other enum.
They look something like:
SchoolEnum(ImmuneEnum value)
{
this.immune = value;
}
...
2
votes
1answer
87 views
Add a control using XAML but instantiated using code-behind
I'm trying to understand how XAML and code-behind talk to each other. I know that code-behind can access an element instantiated in XAML using the Name attribute eg:
Instantiate the button in XAML:
...
2
votes
5answers
283 views
Why is it possible to instantiate a struct without the new keyword?
Why are we not forced to instantiate a struct, like when using a class?
2
votes
3answers
127 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
202 views
how to instantiate template of template
I have template that looks like this:
100 template<size_t A0, size_t A1, size_t A2, size_t A3>
101 struct mask {
103 template<size_t B0, size_t B1, size_t B2, size_t B3>
104 ...
2
votes
2answers
459 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
3answers
40 views
Why can't I place an array of objects in of in the resources of my root control?
Suppose I have a normal Xaml file with two extra xmlns, one to a "Person" Class with two CLR properties "Name" and "Age", and one to a String object:
<Window x:Class="WpfPractice.ListBinding"
...
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
2answers
74 views
Instantiating a generic extension of an abstract class
Trying to write some generalised code for Genetic Algorithms and I have an abstract class Genotype as follows:
public abstract class Genotype {
private ArrayList<Gene> genotype = new ...
1
vote
6answers
83 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
354 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
2answers
518 views
How to pass a list of unknown objects of type custom-class containing some properties to method?
I am making a databasehelper class with methods to access a SQLCE database. I want to use the same method to read row(s) using different classes containing properties that match the fields in the ...
1
vote
1answer
223 views
Javascript / Jquery, instantiate multiple classes with similar global variables
I have a plugin i created which works great when there is only one instance of it on the page.
However it uses a global variable to store the current item index.
When I place multiple instances of ...
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 ...
1
vote
1answer
657 views
adding stock data to amibroker using c#
I have had a hard time getting and answer to this and i would really , really appreciate some help on this.
i have been on this for over 2 weeks without headway.
i want to use c# to add a line of ...
1
vote
5answers
156 views
Simple way to decrease values without making a new attribute?
I'm making a program where you're firing a 'blaster', and I have 5 ammo. I'm blasting an alien who has 5 health. At the end I instantiate the player and make him blast 6 times to check that the ...
1
vote
2answers
140 views
Cost of multiple instantiations
While working in a project today, I came across the following code:
pcShowByCategory.Controls.Add(new LiteralControl("<div id='lblDivP'>"));
pcShowByCategory.Controls.Add(new ...
1
vote
1answer
494 views
How can I instantiate WPF elements via their type when they have StaticResources?
I need to instantiate WPF types (say, a UserControl or a Page) via reflection for a designer. The problem I'm having is that when I attempt to instantiate these using Activator.CreateInstance I get a ...
1
vote
2answers
603 views
C# instantiate in foreach loop? [closed]
Possible Duplicate:
Loops and Garbage Collection
foreach (ObjectTypeA typea in ObjectTypeACollection)
{
var objectTypeAProcessor= new objectTypeAProcessor();
...
0
votes
3answers
38 views
create an object of an abstract class != instantiate the abstract class?
I have learned that we can't instantiate an abstract class. But today i tested some codes and i feel confused about it.
package MainPackage;
abstract class abstractClass {
abstract abstractClass ...
0
votes
1answer
56 views
Android Viewpager saving data and views
Hello stackoverflow world,
Hopefully someone can help me with a slight problem/confusion I have with Viewpagers and saving data.
PROBLEM:
When scrolling across the four views I have, the first ...
0
votes
1answer
38 views
E/AndroidRuntime(303): Caused by: java.lang.ClassNotFoundException:
Can someone please tell me why I keep getting this error. This is literally a copy of a working package and i do not understand ow to fix this. I have searched and read this error from logcat and have ...
0
votes
3answers
31 views
Instantiating a class that inherits INotifyPropertyChanged
I have a very simple class that has a single property and which inherits INotifyPropertyChanged:
class SimpleClass:INotifyPropertyChanged
{
public event PropertyChangedEventHandler ...
0
votes
1answer
89 views
Smaato custom banner view could not be instantiated (Android)
I tried to use Smaato ad in my app. For first look it's simple to use, but in practice I got a problem. I put in main view XML a Smaato banner. The problem number one is that Eclipse shows me in ...
0
votes
2answers
59 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
1answer
267 views
iOS storyboards instantiate viewController and IBAction
I may go mad very soon.
This is the reason:
- I started up with Single View Application project with storyboards. Then I set the view controller class name in the storyboard for my viewController.
...
0
votes
1answer
47 views
What is the term used to describe assigning values to an object without first instantiating it?
E.g.
Car myCar = Car.Ford
instead of
Car myCar = new Car();
myCar = Car.Ford
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
1answer
63 views
Calling a method on Session Bean from POJO?
Given only the fully qualified class name/interface name of the Session Bean, is it possible to instantiate call a method on it from a POJO?
If yes, how?
Thanks,
TheLameProgrammer
0
votes
2answers
253 views
Android: Custom view fails to instantiate
I am trying to add Smaato to my app to monotize it. I have been following the developers guide but I keep getting the error that my custom view for the banner isn't being instantiated. I have the ...
0
votes
2answers
89 views
How to instantiate polygon array in java
I thought that
Polygon[] polygon = new Polygon[3];
would work. It runs through the 'new' line completly fine, but once it hits adding a point, it does a null pointer exeption. I add a point like ...
0
votes
3answers
59 views
XNA nullreferenceexception , framework classes
I was messing around with some triangles and made this. At first, I thought, all the "methods" I wrote were instantiated but those "methods" : device, content and effect; are actually all nulls. The ...
0
votes
1answer
100 views
Magento Extending Paypal Standard - Can't instantiate Model
I am working with Paypal 1.4.2
I have extended Paypal Standard module to allow for some custom coding
My config.xml file looks like the following:
<?xml version="1.0"?>
<config>
...
0
votes
0answers
90 views
Force cast imported class in C#
I have an imported assembly in my project, and I want to pass an object that is defined within the imported assembly. I want to manually construct each member of this object, but its members are ...
0
votes
1answer
286 views
Instantiate a web user control in a class in app_code
I am writing a class called Evaluatieform that works with web user controls, their events and eventually adds them to a panel so the web page only needs to instantiate the Evaluatieform class and call ...
0
votes
1answer
85 views
Need Help Using Instantiating External .NET Object in ANSI C!
I'm working on an open source project that is written in low-level ANSI C (I have no control over this). I am trying to integrate the Microsoft Office Interop functionality into the Windows build of ...
0
votes
1answer
1k views
Unable to instantiate Action, signupFormAction, defined for 'signupForm' in namespace '/'signupFormAction. ClassNotFoundException: signupFormAction
Been trying to setup a Struts2 + Sprint + Hibernate basic framework and was working on creating a sample application. Everything configured and the stack doesnt through any error/exception while ...
0
votes
1answer
74 views
Choose empty spot on x and z axis
If I want to spawn objects around a target, do I have to use the magnitude command like:
Instantiate (enemy, spawnLocation.magnitude, transform.rotation);
(or something like this)
Or do I have to ...