Instantiation is the process of creating objects from a class in most object oriented and object based languages. In the C++ language, instantiation is the process of creating a class or function from a class template or function template.

learn more… | top users | synonyms (1)

0
votes
1answer
27 views

javascript objects sharing data unexpectedly

I'm working on a map application, and I need to link different events to different types of markers. The createMarkers function creates a few markers by random, but their overlay events always say ...
2
votes
1answer
24 views

Verilog instantiation error

I'm having an issue simply calling a module for a JK flip flop. Our project is to make a state machine, and My logic is correct, but i'm getting an error that says "VHDL module instantiation error: ...
0
votes
0answers
34 views

how to browse classes after instantiation?

I'm developing a program in C++ using many templates. I'd like to read definitions of some template classes after their instantiation. For example main.cc: #include ...
0
votes
1answer
42 views

Instantiate children class from parent without changing parent code

First of all, here is my (pseudo) code: somemodule.py: class parentclass(object): def __init__(self): if(not prevent_infinite_reursion) #Just to make shure this is not a problem ;) ...
-4
votes
0answers
40 views

android java class instantiation failed [closed]

Question: I have a problem instantiating the Login and Register Method on MainActivity which will fetch all the functionality used with that public class Account. I don't know if this was logical ...
4
votes
4answers
71 views

How come an abstract class “DocumentBuilderFactory” allowed to instantiate new instance

Recently, I have been working with XML parsers. This is just beginning for me and I managed to understand how to use DOM parser classes in java i.e. DocumentBuilderFactory and DocumentBuilder to parse ...
0
votes
3answers
70 views

Accessing class methods through objects

Edit: Have edited to provide more spefic code As you can see my sprite drawing is breaking this rule. I would be really grateful if someone could explain by way of pseudo code based on my code below ...
1
vote
4answers
36 views

Unable to instantiate templated class inside another class

I have two classes: one templated, one not. I am trying to create an instance of the templated class inside the non-templated class and the program won't compile. I'm using Visual Studio 2012 and I ...
1
vote
1answer
52 views

How could I use a non constant value to instantiate multiple objects of a class?

For example, I'm coding a battle simulator and I want to instantiate an object for each turn (every Turn object holds a value relating to the current turn number and the Unit object the turn belongs ...
-1
votes
2answers
52 views

Automatically creating class instances [duplicate]

Is it possible to create dynamically instances of a class giving them specific names (e.g. Friend1, Friend2, etc)? I have a "Friends" class with some instance variables (e.g. Name and Surname). In my ...
-1
votes
1answer
49 views

C++ creating a self sufficient object that extends another class

I think that I really am confused a bit on objects and what happens when you extend an object. My goal here is to create B() by extending A() )so that I get all of A()'s functions, etc, but make B() ...
1
vote
1answer
43 views

One-line instantiation of QVector with values without using <<

I can instantiate a QVector containing three QColor values with QVector<QColor>() << x << y << z. Is it possible to instantiate it on one line without using the overloaded ...
1
vote
4answers
121 views

Is a bad programming practice instantiating a class and not saving it in a object?

What I'm trying to say is that: when you instantiate a class you can use the methods of that class using the access operator (.) after the object, but if you only want to use one method of the class ...
0
votes
1answer
52 views

As3: Instantiation attempted on a non-constructor (BitmapData)

I'm so sorry if this question has been answered before or the answer is painfully obvious, but I could really use some help. So I have this Class I want to create instances off of. The idea is to ...
0
votes
1answer
18 views

Instantiation problems with id

I've followed a tutorial to realise a calculator. It seems that my buttons objects that i define, and instantiate with the ID are not instantiated because when i add a listener on them, they return a ...
0
votes
2answers
38 views

class instantiation vs retrieval by reference

Why and when we can instantiate a class directly Human human1 = new Human("john", "doe"); and why and when we retrieve a reference to an instance already done ? ...
1
vote
3answers
54 views

Java : how to call methods with the same name in different objects instantiated from different classes?

I think that my question is not very clear :) Here is my problem (in more details): I have got several objects (lets say objA, objB, objC, etc...) which are instances from different classes (lets say ...
1
vote
1answer
12 views

Instantiation error when comparing two different values

I've got a predicate that looks like the following: condition_met([(X + 1) < 5 | Rest]) :- condition_met(Rest), at(X,_), ...
0
votes
1answer
28 views

Java : Instantiating method variables

I'm relatively new to Java programming and might have missed something obvious so bear with me. I'm creating a program that uses the Swing API with JDesktopPane to create a GUI. On the main screen is ...
3
votes
1answer
78 views

How to create a non-instantiable class?

For one of the project I am currently working I was thinking of creating a class that could not be instantiate by a client and only be supplied an instance of through a particular interface i.e. the ...
0
votes
3answers
51 views

What's with instantiating from a type parameter T not allowing constructor aguments?

If I have classes: class Useless { private string _message ; public Useless(string message) { _message = message; } } class UselessFactory<T> where T : new() { ...
0
votes
0answers
66 views

Android + Robolectric - RuntimeException / InstantiationException in queryBuilder.query() in ContentProvider

I have about ten tests on the ContentProvider that just uses SQLite; all pass save the two that pass through queryBuilder.query() in the Content Provider's query() method. The methods being tested ...
3
votes
3answers
31 views

Using methods to access classes and the instantiate them

I have stored the class I want to instantiate in a variable that is accessible via get and set methods: private $myClass; public function setClass($myClass) {$this->myClass = $myClass;} public ...
0
votes
2answers
43 views

C# console program questions regarding instantiation and use of static fields

C# newbie here. I recently took a test that asked what the out put of some C# code was. I don't have the exact code but I've tried to recreate it from memory below. This code doesn't compile for ...
1
vote
1answer
70 views

Instantiate multiple classes from a single generic overide style class

I am looking for a way to be able to instantiate multiple classes that have the same method. looking to do something where I can pass in the name of the class as a string. Here is what I have so far ...
0
votes
2answers
42 views

Calling methods from class and from instance

I do not understand why those scripts act differently: class A: x=3 y=5 __z=8 def __init__(self): print "Hi, I am an instance object of A class!" print "I have two components: x i y" ...
1
vote
6answers
51 views

Declaring an Array of Textboxes

I'm trying to declare the array Scores as an array of textboxes. It doesn't have a size. I also need to declare it as an instance variable, and instantiate it in the method, CreateTextBoxes. I keep ...
5
votes
4answers
96 views

non datatype template parameter, more specialization generated?

My Code is: #include <iostream> using namespace std; template <typename T, int X> class Test { private: T container[X]; public: void printSize(); }; template ...
0
votes
1answer
23 views

Best way to insantiate a subclass that uses STI

I'm using single table inheritance in my app and I've run into a dilemma on how to best instantiate a subclass. Say we have a class Dwelling, and subclasses Apartment and House. Now Dwelling is ...
0
votes
1answer
17 views

Populating UIViewController with data from different sources

I have an UIViewController and a UITableView inside it. I have views in my app mockups that look identically, they just have different text in a single label and different contents of UITableView, so ...
0
votes
1answer
86 views

Create mapView programmatically

I want to instantiate a MapView programmatically. I'm using Osmdroid. I wrote this, but map is not displayed (with or without setting the parameters)! What's wrong? LinearLayout contentLayout = ...
0
votes
0answers
20 views

Dijit Menu instantiation upon onClick property of another widget

I want to create and show a dijit Menu when another widget is clicked, much like a dijit Dialog, using the onClick property of that widget. In this case, the widget being clicked is a ContentPane. ...
1
vote
1answer
88 views

Embedded UIScrollView not loading its subviews

I have perhaps a strange VC structure here that I just made a bit stranger, causing it to break UIViewController (contains->) UIContainerView (embeds ->) UIScrollView (contains ->) UIView I have the ...
2
votes
3answers
63 views

Is this a safe way to access an enum?

My legacy code has this: if (chgList != ABCHeader.ChangeListTypes.Always) Here is ABCHeader - it's a class (not a variable), and is a non-static class at that: public class ABCHeader { . . . ...
1
vote
2answers
83 views

How can I dynamically instantiate (by classname as a string) the class to call getThings() in this example?

I want to see the source definition for object.__new__() and decided to use this quick way for accessing that code. Why is python giving me a TypeError (is not a type:method), when type() tells me ...
2
votes
1answer
81 views

Creating 2 DLLs sharing an Interface on Visual Basic, is it possible/good idea?

I'm designing a Visual Basic application on that uses one DLL created also by me (both on Visual Studio). In the app, there's an object that instantiates one class defined by the DLL. Friend ...
0
votes
3answers
34 views

What does “ClassName objName; objName(1);” mean?

I have this code: ClassName objName; objName(1); How should I understand it? Does the first line create an object (called objName and belonging to ClassName class) using the constructor that does ...
0
votes
0answers
12 views

Internal types from another assembly can be instantiated and used under medium trust, is this alright?

In an ASP.NET application running under medium trust, I'm obtaining the types from an assembly using the Assembly.GetTypes method. This way I can also get the internal types, as opposed to using ...
10
votes
3answers
150 views

Profiling template metaprogram compilation time

I'm working on a C++ project with extensive compile-time computations. Long compilation time is slowing us down. How might I find out the slowest parts of our template meta-programs so I can ...
0
votes
3answers
61 views

php Use class function that queries db inside another class

I have multiple classes set up and they all need to access the database, which they do. The trouble comes when I want to use a function from one class inside another. class General { private $_db = ...
0
votes
0answers
83 views

Failed to instantiate applet?

When applet is executed. I'm receiving this error. Failed to instantiate applet?? java.lang.InterruptedException at java.lang.Object.wait(Native Method) at ...
1
vote
0answers
19 views

Cannot instantiate the type EventHandler

if (savedInstanceState != null) mHandler = new EventHandler(Main.this, mFileMag, savedInstanceState.getString("location")); else mHandler = new EventHandler(Main.this, ...
1
vote
1answer
49 views

Substitute fully instantiated classes with partially instantiated ancestor classes

I want accepted_dense_vector<??>::value to return 'true' when I give template parameters in the form: C<T> when C is uvector, dynamic_array and T is std::is_arithmetic. ...
2
votes
1answer
34 views

instantiation of FragmentTransaction object not possble according to the compiler, Android

when I try to instantiate FragmentTransaction() I the the error message: "can not instantiate the type FragmentTransaction" in google Android reference it states: Public Constructors ...
0
votes
1answer
116 views

Vb.Net instantiate a Property of a class that is a an array of a different class.

This is for the purpose of Serializing and Deserializing an Xml object <XmlRoot("orderadd")> <Serializable()> _ Public Class clsSMsgRequestMessage <XmlElementAttribute()> Public ...
0
votes
3answers
102 views

Cannot instantiate the type Iterator<ArrayList<Integer>>

ArrayList<ArrayList<Integer>> wordIndex = new ArrayList<ArrayList<Integer>>(Collections.<ArrayList<Integer>>nCopies(initWord.length(), null)); // Populate it. ...
1
vote
2answers
100 views

Best practice curiosity regarding String instantiation [duplicate]

I was reading some advices about best practices in java and I got the following idea which made me curious Also whenever you want to instantiate a String object, never use its constructor but always ...
0
votes
2answers
73 views

Why does delete only work in main and not in a function that gets as an input the object or objects to be deleted?

I am trying to create two classes whose instances get created and deleted together. One class is a base for the other: class Interface; class MyClass { friend class Interface; private: MyClass() ...
1
vote
3answers
76 views

I need help instantiating multiple objects from a single method & class

C# HOMEWORK QUESTION: I am creating a console application that prompts for two integers, prompts for which math operation to perform, and returns the results. I was able to get it to work with my two ...
1
vote
2answers
50 views

Is it possible to store information on non-instantiated objects in jQuery/Javascript?

I'm creating HTML markup in Javascript by concatinating string elements. Something like this: var makeButton = function (el) { 'use strict'; var config = el.attr("data-config"), dyn = ...

1 2 3 4 5 16