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.
4
votes
2answers
29 views
Create a class which can be instantiated like the XNamespace class
A XNamespace object can be created as below:
XNamespace ns="http://www.xyz.com";
Here the string "http://www.xyz.com" is interpreted as a property value(NamespaceName) of that class. I was ...
0
votes
2answers
25 views
Dynamically instantiating/pausing Youtube video (iFrame API) on hover exit of parent element?
I am working on a prototype for a mega menu type navigation bar. The way that it functions is someone rolls over a main menu item, and the large drop down section appears.
I also want to include the ...
1
vote
3answers
126 views
int num = new int(); What happens when this line executes?
Got to know a new thing today that we can create integers by using new operator as below
int num = new int();
Now I wonder if I create an integer in this manner then the resulting integer will be a ...
0
votes
3answers
32 views
Instantiating a type in its own class
I cannot figure out what is wrong with this code
class Test {
int a;
Test() {
a=10;
}
void new() {
Test obj1=new Test();
Test obj2=new Test();
...
1
vote
2answers
35 views
In CoffeeScript, can I instantiate a class above the declaration like I can with JavaScript?
This JavaScript works great, because the JS runtime parses everything for declarations before running statements.
try {
function Test() {
this.speak = function() { alert('From Test!') }
...
4
votes
1answer
47 views
please help me understanding python object instantiation.
I am not a programmer and I am trying to learn python at the moment. But I am a little confused with the object instantiation. I am thinking Class like a template and object is make(or instantiated) ...
2
votes
5answers
68 views
OOP concept: is it possible to update the class of an instantiated object?
I am trying to write a simple program that should allow a user to save and display sets of heterogeneous, but somehow related data. For clarity sake, I will use a representative example of vehicles. ...
0
votes
1answer
16 views
Java 7: Cannot cast from Object to int etc
I'm having a problem running someones code in Eclipse 3.6 (Helios). The code is written with OpenJDK 7. I'm running Windows 7 and I had to install Java 7 for it. I was using Java 6 before. I get 2 ...
0
votes
1answer
41 views
How does certain classes cause automatic instantiation and others do not?
In the below code there is only one instance of the StringBuilder and test2 and test3 are actually pointing to the original instance of new StringBuilder()
StringBuilder test = new ...
-1
votes
2answers
51 views
c# Use of unassigned local variable OR object instance not set to a reference?
The following is a piece of code that does not seem to be working in c# even though it seems acceptable in c++. C# seems to have different standards for object instantiation.
...
1
vote
4answers
59 views
Can a mostly static PHP class be instantiated within itself as an 'okay' practice?
I am reviewing some code a colleague of mine has written and I am trying to wrap my head around his design. It appears they have a class that is mostly static, but has a private constructor method. ...
4
votes
2answers
77 views
static member function inside class template specialization
I am struggling to access static member function defined inside class template.
In the header file TemplateTest.h I defined the primary class Template as:
#include<iostream>
...
0
votes
0answers
32 views
AS3 Should I be using classes for these functions I made?
I'm a bit confused as to whether or not to be using classes to the general interface of a game I'm making.
I made an inventory system (this includes putting items in your inventory, combining them, ...
-1
votes
1answer
21 views
instantiated object's method won't run, error "variable(object's name) not initialized
/** There seems to be a problem with the intended method call from the performance class. The object is recognized as band but for some reason when i call band.begin() (band is the new performance ...
1
vote
1answer
96 views
Unable to instantiate activity ComponentInfo for Facebook SDK Samples
I'm trying to go through the Facebook SDK samples, and have followed the installation instructions of importing the SDK and the Samples into Eclipse. I did not copy them into workspace, and I set ...
1
vote
2answers
54 views
C++, instance of class within same class, parent/child structure within class
I'm quite new to C++ and looking for some advice on the following problem. I'm trying to create a program that generates tree shapes (yes, real trees). These shapes are built completely from branches. ...
-1
votes
4answers
63 views
Class written with initWithFrame — I want to instantiate from Storyboard
I want to use UIExpandableTableView - https://github.com/OliverLetterer/UIExpandableTableView#readme.
I've run into a problem because it's only initializer is initWithFrame:
#pragma mark - ...
2
votes
1answer
44 views
Instanciation of ViewModels an Views on top of existing model objects
I am working on a project where I try to implement MVVM to correctly separate the business logic from the views. Eventhough I read a lot of papers on this pattern and looked at sample applications, I ...
0
votes
0answers
9 views
object behavior in web form?
a class test
{
public int x;
public int y;
}
public partial class WebForm1 : System.Web.UI.Page
{
test t1;
protected void Button1_Click(object sender, EventArgs e)
...
1
vote
0answers
34 views
Qt: How to instantiate a class from within a c++ dll without header?
I have a c++ dll. The relevant function, that I want to use is:
extern "C" __declspec(dllexport) void PDFConverterWrapperCpp::convert(QString source, QString target, QString license){...}
I also ...
0
votes
0answers
34 views
ios master-detail view, detailView not properly instantiated
I have a master-detail application with 2 views (master and detail). In my detailView I have a tableView which shows 3 details. My masterView uses prototype cells to display a list of names. When ...
0
votes
0answers
53 views
Unity3D: Network.Instantiated objects appearing on server but not client
So to simplify the scenario let's just say I have two scenes in my Unity project: the menu where connection happens and the level to walk around in. The server user (SU) will setup a game and load the ...
0
votes
1answer
29 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
40 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: ...
1
vote
0answers
37 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
50 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
4answers
82 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
75 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
41 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
53 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
54 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
57 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
45 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
123 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
61 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
22 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
42 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
62 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
32 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
93 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 ...
1
vote
3answers
53 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
96 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
34 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
50 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
78 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
44 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
56 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
101 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
25 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 ...






