A special type of subroutine called at the creation of an object.

learn more… | top users | synonyms (2)

-1
votes
1answer
38 views

How can I force the redefinition of a constructor?

is there any possibility to force the redefinition of a constructor? I have a base abstract class public abstract class AbstractBaseClass { private AStrategy as; private ...
2
votes
2answers
67 views

{ctor} is not a member of <BaseClass>

I Have a baseclass, called GLObject, with the following header: class GLObject{ public: GLObject(float width = 0.0, float height = 0.0, float depth = 0.0, float xPos= ...
0
votes
3answers
65 views

Recursive Constructor Invocation

public class LecturerInfo extends StaffInfo { private float salary; public LecturerInfo() { this(); this.Name = null; this.Address = null; this.salary=(float) 0.0; } public ...
0
votes
4answers
43 views

Where/How to instaniate an object to handle null reference exception

Hey guys kind of a simple question, I'm not exactly sure where/how to initialize a new object instance so I don't get this error. I have a class object(Contact) that has another class ...
4
votes
2answers
181 views

C++11 Base constructor delegating/forwarding to derived class with “using” keyword

struct B { B () {} B(int i) {} }; struct D : B { using B::B; // <--- new C++11 feature }; D d1; // ok D d2(3); // ok Now, if I add a new constructor inside the body of struct D, such ...
1
vote
2answers
87 views

C++ : Does char pointer to std::string conversion copying the content?

When I convert a char* to std::string using the constructor: char *ps = "Hello"; std::string str(ps); I know that std containers tend to copy values when they are asked to store them. Is the whole ...
0
votes
1answer
64 views

c++ free memory allocation in constructor when facing exception

I found some interesting behavior in the case of exception when construct an object: class bookentry { public: bookentry(){ t1.reset(new test1); //0 test1 *t11 = new test1; ...
0
votes
1answer
29 views

How to add a property in the DOM Object's constructor.prototype in Internet Explorer<=IE8?

I want to add some custom properties to the prototype of the DOM Object,I am able to access the Object.constructor.prototype and add properties when I am working with Firefox or Chrome but can't ...
4
votes
3answers
97 views

Can a using statement appear in a constructor initialization list?

How can one incorporate a using statement into a constructor initialization list? For example, rather than foo::foo(int a, int b, int c) : a(a), b(b), c(something_long::tada(c)) {} I would like to ...
1
vote
1answer
39 views

declaring method inside a constructor

when i declare the method inside a constructor i'm getting error "; expected". Not sure why. could you please help me understand public class Reservation { Date arrivalDate = new Date(); Date ...
1
vote
2answers
40 views

Constructor Error, prints out 'a' and then a triangle before crashing

QuBiEngine::QuBiEngine(ifstream& dnaFile) { int i = 0; while(!dnaFile.eof()) //while the file isn't at its end { dna.push_back(""); //creates an element ...
2
votes
1answer
27 views

What is the order of construction calls in Matlab OOP?

I have a subclass and super that I'm working with that looks similar to this: classdef ClassSub < ClassSuper properties prop2 end methods function self = ...
15
votes
3answers
194 views

Java 7 Constructor

I saw that in Java 7, they introduce the method requireNonNull. Before starting to reformat my code, I would ask here to have some feedback about using that. public Foo(Bar bar, Baz baz) { ...
1
vote
1answer
65 views

c++ Dynamic 2d array not using default constructor

I got a problem that is beyond my knowledge. I'm working on a HGE project, but this is a c++ issue, not the HGE engine itself. The question: I want to create a 2D array with 3 different animations on ...
0
votes
6answers
89 views

I want to pass a parameter into the constructor of a list of certain classes

I'd like to somehow pass a parameter into a list when I'm instantiating a new list of certain classes. More specifically, I'd like to do something like the following: ...
-5
votes
4answers
77 views

why is the prototype of constructor has same access specifier as that of class [duplicate]

According to the new oracle se 7 java document http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.8.9 the default constructor provided by the compiler to the public class is public ...
0
votes
2answers
17 views

Creating a runnable that uses parameters

I am doing some Android programming and I want to create a runnable that accepts intents. I understand that the general way of creating a runnable is: Runnable R1 = new Runnable(){ Code }; What I ...
2
votes
5answers
129 views

Call to super must be first statement in the constructor, but it is

Having trouble with a program. I keep getting an error saying that "call to super must be the first statement in the constructor. The problem is that it is the first statement in my constructor. ...
0
votes
1answer
31 views

php class _Construct empty

<? session_start(); /* echo $_SESSION['SQLIP']; echo "<br>"; echo $_SESSION['SQLDB']; echo "<br>"; echo $_SESSION['SQLUSER']; echo "<br>"; echo $_SESSION['SQLPASS']; echo ...
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 ...
2
votes
1answer
68 views

“'BaseClass' does not contain a constructor that takes 0 arguments.” Partial C# / Protobuf class

I have a class MyDataRow which I derive from DataRow, here is my code: public partial class MyDataRow : DataRow { internal MyDataRow(DataRowBuilder builder) : base(builder) { ...
1
vote
0answers
66 views

Is it inheritance?Could some body explain?

I have two objects function Obj1(name){ this.prototype={}; this.prototype.Name=name; this.prototype.getName=function(){ alert(this.Name); }; } function Obj2(name){ var x=new ...
0
votes
2answers
119 views

Constructor, Copy Constructor and Stack Creation : C++

This question is regarding Function Stack Creation. Suppose we create a function fn(int a,char b) and call from main fn(A,B) , in this case when the function is called a fn. stack is created with ...
-2
votes
2answers
62 views

How to initialize a class Object of Typename T?

For a C++ class I am taking, I am creating a Vector Library. We are not allowed to use the built in vector library, of course, and I have decided to use arrays in my 'myvector' class. I am currently ...
1
vote
2answers
49 views

initialize std::map value when its key does not exist

I read in here that the std::map operator[] create an object if the key doesn't exist ! 1st of all may I know where I can find a reference for this claim?(Although I know it is true) Next, imagin ...
-4
votes
1answer
66 views

Passing NULL parameter to constructor

This is my constructor: Tree::Tree(char* Pinfo, Tree treeL, Tree treeR){ info=Pinfo; Tree* pointPsubTreeL = &treeL; if(pointPsubTreeL){ cout<<"it is not ...
0
votes
2answers
73 views

I assign a pointer and it nulls itself out

So I have a constructor for an object, that on creation sets a few values and then places itself at the end of a linked list. The problem I'm having is that when it assigns the address of the new ...
2
votes
2answers
71 views

How to ensure that a static constructors is called without calling any member

I have a class with a static constructor. I want the static constructor to be called without calling or using any of its members, but only if the constructor has not been called already. I tried ...
0
votes
0answers
68 views

initialized pointers are not passed through constructor

I have two classes server and Broker . server is a member in Broker and some of its members are initialized when Broker members are initialized. It is simple if you look at their constructors and some ...
1
vote
2answers
42 views

Not a constuctor error within jQuery.on

Given the following code: var test; this.test = function() { //... }; $(document).ready(function() { $(this).on('click', function(e) { test = new test(); //... I always get test is not a ...
0
votes
2answers
34 views

Is it possible to re-direct an instance from a constructor in a multi-class?

I am checking a boolean condition passed into a multi-class' constructor, and if true I'm essentially trying to assign this to an instance of the sub-class. That doesn't work of course, so is there ...
0
votes
3answers
10 views

Explantation about inheritance

I have two classes, while B derives A. I created a pointer to A, is called: a2. please take a look in my main function. What does this line do? a2 = new B(); Why when I delete a2, only the ...
0
votes
1answer
51 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
24 views

Should I use other entity objects or their ids

Which approach is more best practice? I have a database with Products table and Categories table. Product always has its category. Now I am implementing the Product entity class and I do not know if ...
0
votes
4answers
45 views

How to execute main form button function to second form?

I have a function in a button of main form which start the camera when click, I want that start function to also execute in second form that function contains conditional statement if and else. ...
0
votes
1answer
23 views

VB.NET - Provide predefined creation settings in a class

I'm writing a theming class called FormTheme for a VB.NET form application. It contains colour scheme information that can be applied at runtime to form controls. Currently there are three ways to ...
0
votes
1answer
97 views

Instantiate an object of one class in the constructor of another class C++?

I'm writting a basic game in C++ which features 3 classes: Game class, Character class and Item class. The Game class will have all the logic of the game, so that the main function will just simply ...
2
votes
1answer
96 views

How to initialize a vector of a class type in a constructor

I have a class class effeid { public: effeid(int a=0,int b=0,int c=0,int d=0):first(a),second(b),third(c),fourh(d){}; int first; int second; int third; int fourh; }; and then a second ...
8
votes
1answer
136 views

Why the copy constructor is not called?

In this code: #include <iostream> using std::cout; class Foo { public: Foo(): egg(0) {} Foo(const Foo& other): egg(1) {} int egg; }; Foo bar() { Foo baz; ...
0
votes
2answers
27 views

How to get the object's class name when it is an instance of a subclass?

Suppose we have an abstract class Animal: function Animal(){}; Animal.prototype.communicate = function(metadata){ //ABSTRACT }; And then we have a Duck class: function Duck(){}; Duck.prototype ...
1
vote
5answers
98 views

Create Instance using base constructor

For reasons out of the scope of the question, I'm needing to dynamically create an instance of a child class that inherits from a base class, calling a constructor that doesn't exist with an argument ...
3
votes
3answers
70 views

How to implement a sealed, public nested class that can only be created by its enclosing class?

Goal My goal is to implement a sealed, public nested class that can only be created by its enclosing class - without using reflection. That means that the nested class cannot have any public or ...
1
vote
4answers
81 views

super() constructor within a subclass that extends a subclass?

I'm not exactly sure if I worded my question right, but I'm confused with these lines of code. public class First { public String name() { return "First"; } } public class Second ...
0
votes
3answers
70 views

Java Copy Constructor ArrayLists

I am trying to create a copy constructor considering the object is mutable. My copy constructor is wrong; I can't seem to figure out what I am doing wrong. Please do NOT tell me to use clone(). How ...
0
votes
0answers
57 views

gprof global constructors keyed to static member

This is the same question asked in g++ gprof global constructors keyed to static member My apologies for being a repetitive newbie But I identified the issue there as being the same as mine but it ...
0
votes
0answers
33 views

Passing parameters that must satisfy a condition

Suppose you have a class called BlockedRecordsFile that handles a file as a collection of fixed-length blocks (of, say, 4 Kb). Each block contains a number of Records, with the following restriction: ...
1
vote
2answers
50 views

C++ trouble setting enum field in structure constuctor

I'm trying to set an enum in a structure constructor but I can't quite get the syntax correct. Are there any suggestions? This is what I have but I keep getting errors. struct Event{ enum ...
0
votes
2answers
81 views

Java constructor not called [closed]

I have a class called Queen, that is a subclass of Ant. The constructor for Queen takes in parameters, and passes those on to Ants constructor, plus additional specifics for a queen. Now, that is how ...
1
vote
3answers
60 views

struct initialization in c++ error

I'm new to c++, I run the following code in visual studio c++ struct bob { double a,b; bob(double a,double b); } int main() { bob z(2.2,5.6); ...
1
vote
1answer
38 views

declaration of variables in constructor [duplicate]

I am new to C++ I do not understand this type of declaration. For example this is my class: class Complex { public: Complex( double r, double i ) : re(r), im(i) {} Complex operator+( ...

1 2 3 4 5 105