A special type of subroutine called at the creation of an object.
0
votes
3answers
62 views
Assigning doubly linked-list pointers in constructor
I'm trying to create a few nodes for a doubly linked-list and print them out. So I create my dnode class:
template <typename T>
class dnode
{
public:
T nodeValue;
...
0
votes
2answers
65 views
Is there a way to set inheritance in the same module with __PACKAGE__->?
For example I want to store the data for a dbi connection on startup so I do not have to initialize it through an object, is their a way to do this in the same package?
Initializing through my object ...
-1
votes
3answers
72 views
Using an ArrayList as Parameter of Constructor
I'm trying to write a constructor for a class which accepts an ArrayList (containing integers) as one of it's arguments. When instantiating this class later, I will pass an appropriate, pre-populated ...
0
votes
3answers
73 views
Need a way to define input arguments for constructor in interface
First of all, I know it isn't possible to define constructors in interfaces in Java. But somehow, I've run into a problem where I need something very similar. Maybe there is an easy solution for my ...
0
votes
3answers
76 views
The constructor initializer list and const variable
probably this might be a very basic question, but still wanna understand some basic concepts...
why do we define a variable as a const ? - to keep the value of that specific variable constant through ...
5
votes
6answers
80 views
Setter method in constructor
Got a question that I come across
public class Student{
private String studentNumber;
private String studentName;
private double studentResult;
public Student (String aNumber, ...
0
votes
1answer
44 views
Receiving Error 1026 in AS3 and do not know why
I am getting error 1026 which is "Constructor functions must be instance methods" and I don't know why. I am creating a media player type program and am having trouble with my music portion. I made a ...
0
votes
2answers
39 views
Can a subclass have less parameters than its subclass?
I'm currently tasked with editing code for an asteroid game in java. The main class is finished, but I have to complete the classes for the objects interacting in the game controlled by main. In the ...
0
votes
2answers
26 views
Some issues with inheritance and default constructor
I have two structs
template<typename T>
struct Node{
T obj;
Node* next;
Node* prev;
Node();
Node(T a, ...
0
votes
2answers
68 views
Why the method call in end to copy constructor?
I don't understand why in last line return *newP; the method enter to copy constructor this make memory leak, because I can't free the new Poly created from copy constructor?
const Poly ...
4
votes
3answers
62 views
Is it possible for a constructor to accept a number of parameters defined by a previous parameter?
Say you have the following class:
public class MyClass {
public MyClass() {
}
}
I want to be able to pass a definable amount of parameters in a constructor, something like this:
...
1
vote
0answers
37 views
PHP: Calling a 'setup' abstract method from an abstract class constructor; good or bad design?
I'm trying to decide the design pattern for a class structure I'm working with and I'm torn on the best way to implement the setup of the classes.
One approach calls an abstract setup function in the ...
0
votes
1answer
34 views
Force-call a specific constructor in a parent's class
I'm facing for the first time the following case:
I have the following java class:
public class Values extends ArrayList<Object>{
public Values() {
}
public Values(Object... ...
-3
votes
2answers
86 views
Getting nullpointerexception while using constructor
public class Author {
private int id;
private String name;
private String university;
private String department;
private String email;
private int article1;
private int article2;
private int article3;
...
1
vote
2answers
41 views
Constructor Calls Overridable Method (delayed call)
I understand this warning in the normal case like:
class Test {
public Test() {
hello();
}
public void hello() {}
}
but what if we have something like:
class Test {
public Test() {
...
0
votes
2answers
72 views
Call methods (using constructor) from a class extending view
I used canvas to draw some bitmaps. Everything fine here, I used a class extending view and using the constructor super(context, attributeset);
Now I want to use methods from another class, but how to ...
0
votes
4answers
65 views
C++ Enum Returning Function to be Used in Constructor
I want to return an enum value from function, as my constructor requires an enum value to be created.
My class :
class myBasket{
enum myType {type1, type2, type3} MT;
public:
myBasket(myType ...
0
votes
5answers
84 views
why is there not always a default constructor [duplicate]
In C# when I create an empty class it provides a default constructor however when I provide a constructor with parameters the default constructor is no longer created.
My questions are:
why does ...
1
vote
3answers
62 views
Class instance inside class declaration with constant arguments
I am having trouble declaring instances of a class with constant arguments inside the definition of another class.
class Foo
{
private:
const int m_a, m_b;
public:
Foo(int a, ...
0
votes
0answers
96 views
Displaying child User Controls in Windows Forms Designer
For some reason, the Forms Designer in VS 2010 does not work as I expect it to work.
The left side of the picture shows three screenshots in design mode, the right side shows runtime mode.
In its ...
-4
votes
4answers
79 views
Default constructor in Java [closed]
I have a default constructor within my main class that is seemingly not being called at runtime. Here is an example:
public class Cat {
private static int myval;
Cat() throws IOException {
...
5
votes
5answers
100 views
Constructor/Destructor call order on stack
I have the following simple code:
class A
{
int a;
public:
A(int a) : a(a) { cout << "Constructor a=" << a << endl; }
~A() { cout << "Destructor a=" ...
-4
votes
2answers
61 views
Explanation as to why the constructor is undefined? [closed]
I'm getting the error The constructor Button(Class<Regular>) is undefined. I can't seem to figure out why I'm getting this error, although I believe that I'm looking over some obscure detail ...
0
votes
1answer
48 views
C# code re-use public class Foo<T> method parameters
I was hoping someone could help me with a problem. I am attempting to make a new class of Type:
public class Foo<T>
whose only method's job is to iterate through another classes' properties. ...
0
votes
2answers
54 views
Object-Natured Functions
Context
I've noticed that some functions can only be called with the new prefix. When called without it, the error Illegal Invocation is thrown. Below is two examples of how the console reacted when ...
0
votes
3answers
41 views
Prototyping with Javascript Constructors
Consider the Following Example
var Foo = function(){
this.identity = 'Foo';
};
Foo.prototype.bar = function(){
this.identity = 'bar';
};
var fooInstance = new Foo(),
bar = new ...
3
votes
3answers
82 views
Constructor handling exception and using this keyword Java
I have two constructors for my class, one that takes File object and the other takes a String object, and I want to use the this keyword. The function with the implementation is the one with File as ...
3
votes
3answers
88 views
Haskell type of specific data constructor
Suppose I have the following Haskell code:
data Option
= Help
| Opt1 Int Double String
-- more options would be here in a real case
handleOption :: Option -> IO ()
handleOption option ...
1
vote
2answers
40 views
No error for not initializing reference variable of class
I am a newbie and have a basic doubt about relationship between object creation and constructors.
Program- 1
#include<iostream>
using namespace std;
class xxx{
private: int x;
...
-5
votes
2answers
107 views
Having trouble with arrays and constructors [closed]
I think I'm missing something very small. I also think I've written probably 95% of the code needed to succeed. The problem is that when I run the program my output is always 0 for each answer. In ...
1
vote
1answer
38 views
When making a custom Maven plugin, which comes first, execute() or parameters?
So I have a custom maven plugin that has some parameters that I use as global variables. Like so:
/**
* Parameter used keep the name of a file
* @parameter expression="${filename}" @require
*/
...
-10
votes
2answers
89 views
Does Java allow you to define method with void type and the same name as class name? [closed]
I find following code works in Java:
class myclass {
public myclass() {
//this is constructor.
}
public void myclass() {
//this is not constructor but a normal method.
...
0
votes
1answer
45 views
Passing an array of object from one class to another
I've been trying to create a program where it takes an array input through an object and passes the parameter (simulation of ArrayList).
I keep getting the java.lang.ArrayIndexOutOfBoundsException ...
0
votes
1answer
69 views
C++ forbids declaration of 'binaryTreeType' with no type
I've tried moving this code around all over and I cannot get past this compile error. I need to pass the binaryTreeType into the constructor for PostorderTreeEnum because the root pointer is protected ...
2
votes
1answer
87 views
smart pointer - what if constructor throws?
I have a class that connects to a USB device in the constructor. If the device isn't present or some other situation fails then the constructor throws an exception and the calling code deals with it.
...
2
votes
2answers
65 views
const_cast a const member in a class constructor
I sometimes use const_cast when I want a member variable of a class to be constant during the life of the class, but it needs to be mutable during the constructor. Example:
struct qqq {
const ...
1
vote
2answers
48 views
Optimal way to construct an instance from an http request parameters
In my project i have:
a servlet that handles http requests with users profile info as parameters, i.e (userName = "Bob" , password = "ugaBaga", address = "blabla"... )
a User class that represents ...
0
votes
4answers
84 views
c++ segmentation fault when deleting dynamic tables
everyone I have to make a dynamic matrix and here are the constructors and destructor I have:
Board::Board() {
a_l=0;
a_c=0;
a_mp=NULL;
}
Board::Board(const Board&t) {
a_l=t.a_l;
...
0
votes
9answers
165 views
Inheritance in c++. Why is it wrong?
class Human
{
protected:
string name;
public:
Human () : name ("Jim") {}
Human (string n) : name (n) {}
};
class Adult : public Human
{
private:
string ...
2
votes
5answers
88 views
Multiple constructors with same arguments
I need to create multiple constructors with same arguments so that I can call these from my DAO class for populating different drop down values
public static Employee empType(String empCode, String ...
0
votes
2answers
72 views
Initialize an array of a class in a constructor
I have a class Garage that has a property which is an array of type Car, which is another class in the program. I've tried several iterations and get runtime errors on most of them. I get a ...
0
votes
2answers
77 views
Constructor Not Working [closed]
I am writing a program to show Conway's Game of Life in C++. My professor has given us a main function and a class describing the "universe", we must implement the functions prototyped in the class. ...
1
vote
4answers
63 views
How to turn a string passed through a constructor in to a variable?
One of my current projects requires me to send an actual name of a file into a class but I can't figure out how to turn the string into a variable. In other words I need to turn Andrew in to the ...
0
votes
1answer
61 views
Template Constructor using STL iterators
I'm writting a hash table, but I've faced with a difficulty. I want to initialize it with contents of standart containers(vector, list and etc.), like a map:
map <string,int> ...
2
votes
1answer
109 views
New to Objective-C. Getting a “may not respond to ' new' warning. ” Constructor leading to a segfault
So I'm new to Objective-C and I'm following this tutorial. I'm running Linux Mint 14. I've installed gobjc by running sudo apt-get install gobjc and I have gcc already installed as well. I'm trying ...
0
votes
1answer
37 views
TreeMap constructor of List values
I have a Class1 with private attribute TreeMap<Long, List<Class2>> tree; and others, I want to write a constructor Class1(Class1 copyOfClass1). Should I create the List values of the ...
3
votes
2answers
46 views
Checking at runtime if a class has a specific constructor that is using generics
Hello all :) I'm trying to chose the right constructor in a class. Here is the code:
Constructor[] constructors = targetClass.getConstructors();
Constructor goodConstructor = null;
for (Constructor ...
2
votes
1answer
153 views
Fragment - InstantiationException: no empty Constructor -> Google Maps v2?
I get this error message, when I open a closed App again via App-Change button:
Caused by: java.lang.InstantiationException: can't instantiate class com.*.FragmentContact$1; no empty constructor
...
3
votes
3answers
70 views
Best practice - inherited variables set in derived classes
I have an abstract class containing methods that rely on class-level variables. However, the values of those variables are set in the classes that inherit from the abstract.
I've written this so ...
3
votes
4answers
297 views
Why Java doesn't provide default constructor, if class has parametrized constructor? [duplicate]
Why Java doesn't provide default constructor, if class has parametrized constructor?
Consider the following example
class A {
int a;
public A() {
}
public A(int val) {
a = ...






