0
votes
1answer
31 views

How do I use an initializer list with a base class?

Given the following: struct A { int foo; int bar; }; struct B : public A { int baz; }; How would I construct a B with an initializer list that also constructs the elements in A? The ...
5
votes
4answers
127 views

What properties are guaranteed by constructors in Java?

I used to think that, intuitively speaking, a constructor in Java is the thing that makes an object, and that nothing can touch that object until its constructor returns. However, I have been proven ...
2
votes
2answers
54 views

Confused by the use of Parent to Child in a constructor

I hope I can get some clarification regarding this issue. So a class hierarchy looks like this: AbstractClass, ConcreteClass1 and ConcreteClass2. ConcreteClass1 extends AbstractClass and ...
13
votes
4answers
338 views

What is the difference between a class having private constructor and a sealed class having private constructor?

Is there any difference between A and B? Class A has private constructor: class A { private A() { } } Class B is sealed and has a private constructor: sealed class B { private B() ...
2
votes
2answers
63 views

Using object inside constructor

I am creating my own vector class inheriting the STL one. I have a problem while creating the object. Here is my class. using namespace std; template <class T> class ArithmeticVector : ...
2
votes
1answer
50 views

Inheritance of templated class members in constructor

I posted a very similar question and got my answer. I'm now facing the same issue with the constructor.. How would one write the constructor for T2 ? template<typename T> class T1 { ...
1
vote
2answers
55 views

Invoking constructor of derived class execute before constructor of base class

Well, originally I had a couple of constants (like MAX_SPEED) with different values in every of the derived classes. The idea was to use those values in some methods of the base class. That's when I ...
0
votes
2answers
67 views

Passing arguments to a superclass constructor

I'm just getting into derived classes, and I'm working on the famous Shape class. Shape is the base class, then I have three derived classes: Circle, Rectangle, and Square. Square is a derived class ...
0
votes
2answers
22 views

Call parent constructor automatically after children PHP

I was tried with the name of parent class like constructor and works partially for me. First calls to "DarthVader method" like constructor but never call to "LukeSkywalker constructor".. ...
0
votes
1answer
71 views

C++ initialization list in second derrived class

I'm trying to write a relatively deep class heirarchy and my compiler keeps throwing "no matching function for call to [default constructor for bass class]". Here's the scenario: Class A { ...
-1
votes
1answer
39 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
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 ...
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
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
4answers
118 views

How to make base class's certain constructor be callable only by particular derived class(es)?

struct Base { Base (type1, type2, type3); Base (); // <--- should be invoked only by `Derived_2` virtual ~Base() = 0; // an abstract class }; Say for above Base, we have multiple derived ...
0
votes
2answers
64 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 ...
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
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... ...
0
votes
9answers
164 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 ...
3
votes
3answers
69 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 ...
2
votes
1answer
30 views

Derived exception does not inherit constructors

I have a problem with the code below. #include <iostream> #include <stdexcept> class MyException : public std::logic_error { }; void myFunction1() throw (MyException) { throw ...
2
votes
1answer
87 views

C++ Inherited Constructor

I am currently developing a c++ program with the main purpose being you have two different objects which float around the screen, crash into each other, etc. Anyway the problem that I am having is ...
2
votes
2answers
70 views

Inherit constructors from template base class without repeating template arguments?

How do I inherit constructors from a template base class without repeating the template arguments (and without using macros): For example, this does not work (using GCC 4.8): template <typename ...
0
votes
3answers
83 views

C++ Segmentation fault on creating an array of objects

Say I have an object of class baseclass: // baseclass.h class baseclass { baseclass() # default constructor, constructs baseclass object } And in the .cpp for baseclass: // baseclass.cpp ...
3
votes
4answers
166 views

Initialize field before super constructor runs?

In Java, is there any way to initialize a field before the super constructor runs? Even the ugliest hacks I can come up with are rejected by the compiler: class Base { Base(String someParameter) ...
-1
votes
2answers
59 views

Creating Children Objects with Parents Variables

ok i've found alot of information close to an answer but nothing that really works and i really hope you guys can help. imagine something like this public class Parent { public int A; int B; ...
-3
votes
3answers
111 views

C# Inheritance Issue - Does not contain a constructor that takes 0 arguments

I've read through some of the other posts that are related but I don't believe I have the same problem that they do. I believe I'm doing my constructor for my inherited class properly, however it ...
4
votes
1answer
85 views

Overridden Function within Child Class Constructor (JAVA) [duplicate]

Why is the value of id = 0 when super class constructor is called within the derived class constructor? When child object is created, when is memory allotted in the heap for the object? After the base ...
0
votes
2answers
83 views

Can explain how the output is coming like this?

public class A { public A(){ System.out.println("A created"); } public static void main(String[] args) { new B(); } } class B extends A{ public B(){ ...
1
vote
1answer
74 views

php constructor inheritance

I want to clarify a problem i am having I have a base DataBase class that will be inherited by a bunch of other classes.The constructor looks like this: public function __construct ($table) { ...
2
votes
5answers
116 views

(beginner) C++ inheritance in constructor and methods using a Java example as starting point

I am learning c++ inheritance and I come from Java. To train, I made a small java example and tried to convert it to c++ but my c++ implementations has many problems. This is my interface ...
3
votes
1answer
122 views

derived class calls wrong base class constructor [duplicate]

Can you explain the output of the following code? And what do I need to do to call the right base class constructor? Thanks. #include <vector> #include <iostream> template <class ...
1
vote
1answer
27 views

Construct class from superclass instance

So you have some function, say Gtk.Builder.get_object(), which returns some widget. In our case a Gtk.Window(). I have a subclass of Gtk.Window() which adds some signal handlers. class ...
1
vote
3answers
104 views

Exception constructor with Exception Java [closed]

Does anybody know why for the overriding process the overriding method must throw an Exception of the same type (or subtype) of the overridden method whereas on the other hand for constructors it work ...
1
vote
1answer
45 views

Unnecesary Constructor in FileDialog?

Can someone please explain to me why does FileDialog implements two constructors, one for Frame and one for Dialog? I mean, why didn't they use the blessings of inheritance and just created a ...
1
vote
1answer
38 views

ScheduledNotification Inheritance

I'm making a windows phone app using silverlight. I want to make a class that inherit the ScheduledNotification built in class, but when I do this and start defining the constructor an error shows up ...
0
votes
1answer
76 views

Calling a super class constructor when inheriting from Thread

I'm curious why I can't call super(Thread, self).__init__() instead of Thread.__init__(self) when my class inherits from Thread. Can you help me to understand the problem? #!/usr/bin/python from ...
-1
votes
3answers
588 views

If derived class inherits the private members of a base class, then why not constructors?

I want to clear my understanding of this basic OOPS concept in c#. On most of the internet sites, I read that a derived class inherits the private members of a base class, but it cannot access those ...
0
votes
1answer
67 views

cakephp override construct in child controller

I'm wondering if it is possible to inherit/override constructors in child controllers in cakephp. In my AppController.php I have it like this: public function __construct( $request = null, ...
0
votes
1answer
60 views

Simple way to declare all parent constructors?

I would like to know if there is a VS tool to simply generate all parent constructors in child. My problem is that when I inherit from any class and want to be able to use all the constructors ...
0
votes
1answer
66 views

Javascript parent child inheritance without using prototype

I'm somewhat new to JavaScript. I know that you should use prototype to implement inheritance between objects, but I tried the following and it worked perfectly (using Visual Studio 2012). What am I ...
4
votes
2answers
77 views

Java Constructor Super parameters

Looking at the code for the abstract class ByteBuffer it's apparent it inherits from the base class Buffer. ByteBuffer has a single constructor: ByteBuffer(int capacity) { super(capacity); } ...
1
vote
1answer
55 views

Return a new instance of the most derived class in a virtual function

I have a cleaner class that implements IDataReader, what it does is it filters any DateTime values that are outside of SQL Server's DateTime range and returns DBNull instead (The output of this class ...
-1
votes
1answer
95 views

order of calling constructor in inheritance

I am new to C++ programming language, i have a confusion about order of calling the constructor in inheritance. my question is even though the constructor and destructor are not inherited by derived ...
-1
votes
1answer
111 views

C++ Class Constructor defined public, says it's protected

I have a project going with multiple levels of inheritance. It goes like this XMLs -> Entity -> Item and then there are numerous item classes that inherit from Item which then inherit from ...
0
votes
1answer
70 views

java inheritance

When I change this code into Member m1 = new Member (); It works perfectly. Why it does not work for Super class reference? Please can someone explain? public class Family { String Surname = ...
-2
votes
3answers
114 views

C#: Can I create inherit class without using a constructor of the base class? [closed]

I need to make an inherit class with use of constructor, not defined in the base class? Problem is, that constructor in inherit class requires :base() constructor? How can this problem be solved ...
0
votes
1answer
78 views

A button doesn´t do any action when extending JButton, but it does it with a method returning JButton

how are you?, i have a problem that i am sure is something really stupid but i can´t figure what it is. I am trying to create a button, so every time i want to use that button that does the action ...

1 2 3 4 5 8