Tagged Questions

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

39
votes
4answers
7k views

Does python have an equivalent to Java Class.forName()?

I have the need to take a string argument and create a class in python. In Java, I would use Class.forName().newInstance(). Is there an equivalent in python? Thanks for the responses. To answer ...
27
votes
3answers
4k views

`new function()` with lower case “f” in JavaScript

My colleague has been using "new function()" with a lower case "f" to define new objects in JavaScript. It seems to work well in all major browsers and it also seems to be fairly effective at hiding ...
23
votes
7answers
7k views

Is there a way to instantiate objects from a string holding their class name?

I have a file: Base.h class Base; class DerivedA : public Base; class DerivedB : public Base; /*etc...*/ and another file: BaseFactory.h #include "Base.h" class BaseFactory { public: ...
23
votes
7answers
14k views

C++ Object Instantiation

I'm a C programmer trying to understand C++. Many tutorials demonstrate object instantiation using a snippet such as: Dog* sparky = new Dog(); which implies that later on you'll do: delete ...
19
votes
2answers
6k views

Why is Class.newInstance() “evil”?

Ryan Delucchi asked here in comment #3 to Tom Hawtin's answer: why is Class.newInstance() "evil"? this in response to the code sample: // Avoid Class.newInstance, for it is evil. ...
18
votes
5answers
19k views

Creating instance of type without default constructor in C# using reflection

Take the following class as an example: class Sometype { int someValue; public Sometype(int someValue) { this.someValue = someValue; } } I then want to create an instance ...
17
votes
2answers
428 views

Why can private member variable be changed by class instance?

class TestClass { private string _privateString = "hello"; void ChangeData() { TestClass otherTestClass = new TestClass(); otherTestClass._privateString = "world"; } } ...
17
votes
6answers
1k views

What's the difference between dict() and {}?

So let's say I wanna make a dictionary. We'll call it d. But there are multiple ways to initialize a dictionary in Python! For example, I could do this: d = {'hash': 'bang', 'slash': 'dot'} Or I ...
15
votes
4answers
313 views

Why does the compiler try to instantiate a template that I don't actually instantiate anywhere?

Updated below. The following is the entire code I have in my main.cpp: template<class T> struct other_traits; template<class T> struct some_traits{ typedef ...
15
votes
4answers
271 views

PHP - best way to initialize an object with a large number of parameters and default values

I'm designing a class that defines a highly complex object with a ton (50+) of mostly optional parameters, many of which would have defaults (eg: $type = 'foo'; $width = '300'; $interactive = false;). ...
14
votes
1answer
139 views

Confused: instance creation of c# class in c++

Assume someClass is a class defined in C# with some method int doSomething(void), and for simplicity, providing a constructor taking no arguments. Then, in C#, instances have to be created on the gc ...
14
votes
7answers
1k views

Composing a Controller class with Dependency Injection in PHP

How to solve the problem of composing a Controller class in PHP, which should be: easily testable by employing Dependency Injection, provide shared objects for end programmer provide a way to load ...
13
votes
3answers
274 views

What exactly is “broken” with Microsoft Visual C++'s two-phase template instantiation?

Reading questions, comments and answers on SO, I hear all the time that MSVC doesn't implement two-phase template lookup / instantiation correctly. From what I understand so far, MSVC++ is only doing ...
11
votes
1answer
228 views

Short-circuiting while instantiating template?

Consider this code snippet, template<bool b> struct other { static const bool value = !b; }; template<bool b> struct test { static const bool value = b || other<b>::value; ...
10
votes
9answers
212 views

C# - Downside to Setting Initial Value in Declaration

Is there any downside to a class like: class Example1 { protected string UserId = (string)Session["user"]; } //versus class Example2 { protected string UserId; public Example2() { ...
10
votes
5answers
735 views

Determine if a type is static

Let's say I have a Type called type. I want to determine if I can do this with my type (without actually doing this to each type): If type is System.Windows.Point then I could do this: Point point1 ...
9
votes
2answers
96 views

class template instantiation

I just read the wiki article about CRTP, and I'm a little confused about template instantiation. According to the wiki, member function bodies (definitions) are not instantiated until long ...
9
votes
3answers
95 views

deducing references to const from rvalue arguments

Okay, this may seem like a silly question, but here it goes: template <typename T> void foo(T& x) { } int main() { foo(42); // error in passing argument 1 of 'void foo(T&) ...
9
votes
2answers
1k views

C++ template static member instantiation

#include <map> #include <iostream> template <typename T> class A { static std::map<int, int> data; public: A() { std::cout << data.size() << std::endl; ...
9
votes
7answers
1k views

Why should/shouldn't I use the “new” operator to instantiate a class, and why?

I understand that this may be construed as one of those "what's your preference" questions, but I really want to know why you would choose one of the following methods over the other. Suppose you had ...
8
votes
5answers
328 views

Would simple class instantiation ever fail in C#?

I saw some code written by another developer that looks something like this: var stringBuilder = new StringBuilder(); if(stringBuilder == null) { // Log memory allocation error // ... ...
8
votes
7answers
346 views

When does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object?

In Karl Seguin's Foundations of Programming there is a small section on using the factory pattern. He closes the passage by stating "you can accomplish the same functionality with constructor ...
7
votes
3answers
91 views

Difference between class initializers in C#? [closed]

Possible Duplicate: Why are C# 3.0 object initializer constructor parentheses optional? What is the difference between instatiating an object by using classInstance = new Class() { prop1 = ...
7
votes
2answers
804 views

Does Python copy value or reference upon object instantiation?

A simple question, perhaps, but I can't quite phrase my Google query to find the answer here. I've had the habit of making copies of objects when I pass them into object constructors, like so: ... ...
7
votes
4answers
156 views

`return value' from Constructor Exception in Java?

Take a look that the following code snippet: A a = null try { a = new A(); } finally { a.foo(); // What happens at this point? } Suppose A's constructor throws a runtime exception. At the ...
7
votes
3answers
653 views

C# Delegate Instantiation vs. Just Passing the Method Reference

I have a simple question: what's the advantage of instantiating a C# delegate as opposed to just passing the function reference? What I mean is: Why do: Thread t = new Thread(new ...
7
votes
5answers
1k views

How is an instance initializer different from a constructor?

In other words, why would you need an instance initializer? What difference or advantage do you have in writing a instance initializer over a constructor?
6
votes
4answers
82 views

How to instantiate a class in Objective-C that don't inherit from NSObject

Given this: Person.h: @interface Person { } - (void) sayHello; @end Person.m: #import "Person.h" @implementation Person - (void)sayHello { printf("%s", "Steve"); } @end How do you ...
6
votes
4answers
319 views

Is there a way to instantiate a class without calling __init__?

Is there a way to circumvent the constructor __init__ of a class in python? Example: class A(object): def __init__(self): print "FAILURE" def Print(self): print "YEHAA" ...
6
votes
3answers
228 views

why i cant instantiate objects inside a switch-case block

my code has 3 classes n_hexa,n_octa,n_bin. The code is here switch(choice) { case 1: cin>>n; n_hexa nx(n); break; case 2: cin>>n; n_octa no(n); break; case 3: ...
6
votes
2answers
912 views

DDD - Aggregate Root - Example Order and OrderLine

Am trying to get my hands dirty learning the DDD (by developing a sample eCommerce site with entities like Order, OrderLines, Product, Categories etc). From what I could perceive about Aggregate Root ...
6
votes
4answers
269 views

Object creation in C# question

I'm going over some c# tutorial that states the following: "After it finds the attribute class, the compiler will check whether the attribute is allowed on a class. Then it will check for a ...
6
votes
1answer
354 views

How does the Objective-C runtime instantiate the root metaclass and other class descriptions?

I'm trying to implement a basic object-oriented ANSI C runtime and using Objective-C as a guide. They're seems to be three parts. A Class Description, Class Interface, and Class Implementation. In ...
6
votes
2answers
2k views

DataTemplate-driven View injection with MVVM

I have a container view that looks something like this <UserControl x:Class="Views.ContainerView"> <UserControl.Resources> <ResourceDictionary> <DataTemplate ...
6
votes
4answers
409 views

Possible circular dependency issue with PHP application

I'm experiencing what I believe is a circular dependency issue with my PHP application. Please let me know if this is incorrect. Here is the situation: Two classes, LogManager and DBSession. ...
6
votes
5answers
1k views

JUnit TestCase object instantiation

Is a new (or different) instance of TestCase object is used to run each test method in a JUnit test case? Or one instance is reused for all the tests? public class MyTest extends TestCase { public ...
5
votes
1answer
32 views

VB.NET Interface Instantiation Oddity

I was looking through some legacy code we have and I noticed something that struck me as particularly odd. Say we have the concrete class TestClass. TestClass implements the interface ITestClass. ...
5
votes
1answer
193 views

Wiring up the MVVM View and ViewModel using Declarative DataContext for Design-Time and Data Template for Runtime?

Is it possible to wire up the View and ViewModel using both a Declarative DataContext and a Data Template? Goal: I want to wire Views with a one ViewModel for design-time and another at run-time. ...
5
votes
4answers
155 views

array substring

A real 101 question. How can I create/instantiate an array to be equal to the substring of another array, where the size of the substring is unknown: int n; //some number derived somewhere else ...
5
votes
4answers
321 views

MVVM model instantiation

Following WPF MvvmFoundation, linking the View with the ViewModel has many choices like described on http://www.paulstovell.com/mvvm-instantiation-approaches. However their example has nothing about ...
5
votes
6answers
686 views

How does the Java Boolean wrapper class get instantiated?

In java, I can write code like this Boolean b = true ; And it will work. I now have an object that holds the value "true". How does that work? Why don't I have to pass the value through a ...
5
votes
2answers
125 views

Ruby syntax question: Rational(a, b) and Rational.new!(a, b)

Today I came across the strange ruby syntax in the Rational class: Rational(a,b) (Notice the absence of the .new()portion compared to the normal Ruby syntax). What does this mean, precisely, ...
5
votes
1answer
177 views

std::map and -fno-implicit-templates

I am trying to compile with g++ 4.4 and link a simple program that uses the STL. I am trying to do it using the -fno-implicit-templates so all templates must be instantiated explicitly. I don't ...
5
votes
4answers
114 views

Is there a benefit to storing an object in a variable before calling a method on it?

Example 1: SomeObject someObject = new SomeObject(); if (someObject.Method()) { //do stuff } //someObject is never used again vs Example 2: if (new SomeObject().Method()) { //do stuff } ...
5
votes
7answers
1k views

Declaring a variable before initializing it in c++

Is it possible to declare a variable in c++ without instantiating it? I want to do something like this: Animal a; if( happyDay() ) a( "puppies" ); //constructor call else a( "toads" ); ...
4
votes
2answers
62 views

JS new Object VS new Object() [closed]

Possible Duplicate: new MyObject(); vs new MyObject; What is the difference between new Object and new Object() Is there a reason to ever leave the parenthesis out or is that just ...
4
votes
2answers
89 views

as3 {} vs new Object

What's the differences, pros, or cons of var obj = {}; VS var obj = new Object(); All I know is that the second example takes longer. Is there any real benefit? ** EDIT ** function loop() { ...
4
votes
4answers
75 views

PHP instantiating child class

I'm trying to become an object-oriented coder here, so I'm giving myself some simple tasks. I built a class that displays all the images in a given directory. That worked fine, so I separated that ...
4
votes
4answers
181 views

Instantiate an object without calling its constructor in PHP

To restore the state of an object which has been persisted, I'd like to create an empty instance of the class, without calling its constructor, to later set the properties with Reflection. The only ...
4
votes
2answers
68 views

Method works correctly when called from within its class but not otherwise

I wrote this function in my RootViewController. appRecord is an object holding an XML attribute. - (NSString*) getString:(int)row{ AppRecord *appRecord = [self.entries objectAtIndex:row]; ...

1 2 3 4 5 7