The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
47 views

init boost::optional of non-copyable object

What should I do to initialize boost::optional< T > if underlying type T is non-default constructible, non-copyable/moveable, but one's instance still can exist? Is it forbidden for ...
0
votes
0answers
56 views

Default value constructor error: ‘foo’ is not a direct base of ‘foo’ [duplicate]

I was trying to setup some default constructors, but keep running into the error: newton.h:29:38: error: type ‘Newton’ is not a direct base of ‘Newton’ I can't grasp what I am doing wrong, I am ...
6
votes
6answers
1k views

Why PHP has no default constructor? [closed]

Why can't I use code like this? <?php class NoConstructor { } class ChildWithConstructor extends NoConstructor { public function __construct() { parent::__construct(); // do ...
9
votes
1answer
127 views

Is an inherited default constructor also user-defined?

The Clang documentation neatly explains that If a class or struct has no user-defined default constructor, C++ doesn't allow you to default construct a const instance of it like this ...
5
votes
3answers
108 views

How do I make it call the right constructor?

When I create an array of a user-defined class like this, it will default-construct each element: S s[5]; // calls default constructor five times, one for each S object But what if my class is not ...
1
vote
3answers
42 views

error with const member and default constructor

I have two versions of a C++ code. One give the problem and other does not: /* * This compiles fine */ class base { private: const char c; }; int main() { base b(); // ...
3
votes
6answers
82 views

why default constructor is not present for a class containing const data members

why default constructor is not added by the compiler for the class containing constant data members. please see the below code , in that i have declared constant data member 'a' and while trying to ...
5
votes
2answers
135 views

Why can I not implement default constructors for structs in D?

Writing code like struct S { this() // compile-time error { } } gives me an error message saying default constructor for structs only allowed with @disable and no body. Why??
4
votes
2answers
191 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 ...
37
votes
6answers
35k 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 ...
0
votes
1answer
72 views

c++ “no appropriate default constructor available” error using template class data member

I made a template class Grid(where i said in the header file that the default for T is float), i quoted a part of the source file: #include"Grid.h" template <class T> ...
17
votes
7answers
34k views

Default constructors and inheritance in Java

I have a question about default constructors and inheritance in Java. Generally, if you write a class and do not include any constructor, Java provides automatically for you a default constructor ...
1
vote
1answer
65 views

My constructor specifies at least one value for construction, and yet it can be default constructed

Take the following class: class Foo{ public: Foo(std::string bar_, int baz_ = 7) :bar(bar_) ,baz(baz_) {} private: std::string bar; int baz; }; Since Foo(std::string bar_, ...
0
votes
5answers
286 views

No default constructor exists for class but I have declared one

I have this occur twice in my code, I'm not sure why it's complaining I have a header file "Scene.h": #pragma once #include <iostream> #include <string> #include "Image.h" #include ...
2
votes
2answers
99 views

“No appropriate default constructor available”--Why is the default constructor even called?

I've looked at a few other questions about this, but I don't see why a default constructor should even be called in my case. I could just provide a default constructor, but I want to understand why it ...
9
votes
1answer
106 views

Conditions under which compiler will not define implicits (constructor, destructor, copy constructor, copy assignment) [duplicate]

This is supposed to be a trivial question but I could not find it explicitly on stackoverflow. The following will be defined implicitly if not provided by the user. default (parameterless) ...
0
votes
1answer
58 views

c++ is default constructor called in parametrized constructor?

I have the following template class: template<typename T, int nSize> class Stack{ private: int m_nCurrentPos; Array<T> m_tArray; public: Stack(int nCurrentPos = 0); ... }; ...
0
votes
2answers
78 views

Avoid default constructor for member variable

I have a class with a member variable of another class: class MeasurementUnit { private: MeasurementMultiplier _multiplier; Actually I would not need a default constructor for ...
0
votes
3answers
104 views

Why is this constructor written as it is?

Our professor posted a custom 'String' template file online, and asked us a while ago to fill out the functions below. My question, in order to try and understand this, is why the top three ...
4
votes
5answers
129 views

Constructor this() unnecessary?

There was a class U1 that was extending class U. Class U was empty... In the constructor of U1 there was this first line, calling the constructor of the superclass... public U1(Plate plate, int ...
3
votes
4answers
181 views

Initalize a 2x2 matrix in a class default constructor

I'm trying to create a 2x2 matrix-class in C++ and want to initialize the matrix to an identity matrix through the default constructor. My class is: class Matrix2x2 { public: Matrix2x2(); ...
2
votes
2answers
79 views

Constructor call in inherited classes

Consider the following code: class A { public: int a; }; class B : public A { public: B() { std::cout << "B[" << a << "]" << std::endl; } }; class C : public B { ...
0
votes
1answer
84 views

understanding default constructor c++

class WithCC { // With copy-constructor public: // Explicit default constructor required: WithCC() {} WithCC(const WithCC&) { cout << "WithCC(WithCC&)" << endl; } }; ...
5
votes
1answer
192 views

Private and default constructor in C++11 and gcc

Code: struct A { private: A() = default; // Version 1. }; struct B : public A {}; struct C { private: C() {}; // Version 2. }; struct D : public C {}; int main() { B b; // ...
0
votes
5answers
148 views

What exactly happens when an object is instantiated in Java?

I know that when creating an object of a class the constructor builds that object. Say I had these two class: class Vehicle { public int a = func(); public int func() { ...
0
votes
1answer
144 views

error C2512: 'Tile' : no appropriate default constructor available

Still have the error even with a default constructor. class Foo { public: Foo ( int x, int y, int type ); } And in the .cpp file Foo::Foo ( int x = 0, int y = 0, int type = 0 ) { And ...
0
votes
3answers
53 views

Is there a way I can prevent struct from being insantiated or can I have a class that will be copied?

Ok this is more curiosity than practical requirement. Let's say I have this class: public sealed class Entity { int value; Entity() { } public static implicit operator ...
0
votes
1answer
103 views

Copy constructor define and declare difference?

I have a class Base and Class derived . If i declare a copy constructor in my class, will the compiler define the copy constructor while compiling? What will happen if the Derived class copy ...
-4
votes
2answers
72 views

Java only uses Default Constructor won't calculate by entered parameters [closed]

I've looked over the code a few times and I'm not sure what is affecting this and forcing it to only use the default constructor. For example if I try to put in 2000 for the amount invested it will ...
1
vote
2answers
83 views

Confusion Regarding Default Constructor

using System; class Test { string name; int num1, num2; public Test() { num1=10; num2=20; } public void Show() { Console.WriteLine(num1+num2); ...
3
votes
1answer
843 views

Creating a Fragment: constructor vs newInstance()

I recently grew tired of constantly having to know String keys to pass arguments into Bundles when creating my Fragments. So I decided to make constructors for my Fragments that would take the ...
3
votes
2answers
418 views

C++ default constructor, initializing pointer with new object

I have the following problem: In myClass I want to default initialize a pointer to yourClass, with a new yourClass adress. Unfortunately, if I want to delete the pointer at any point I get a (core ...
5
votes
5answers
397 views

C# Automatic Properties — setting defaults

What's the easiest/straight-forward way of setting a default value for a C# public property? // how do I set a default for this? public string MyProperty { get; set; } Please don't suggest that I ...
-3
votes
3answers
113 views

Are Java constructors only called when they are parameterized? [closed]

Apparently Java thinks my constructor code is not important, so it completely ignores it and then yells at me with a NullPointerException when I try to access an ArrayList that I thought was ...
2
votes
2answers
182 views

Is std::string's default constructor no-throw?

Can std::string s; throw under any circumstances? Is this regulated by the standard (interested in C++03, in case there are differences)?
5
votes
1answer
186 views

Default constructor/destructor outside the class?

Is the following legal according to the C++11 standard (= default outside the definition of the class) ? // In header file class Test { public: Test(); ~Test(); }; // In cpp file ...
0
votes
4answers
167 views

What does this do in a C++ constructor?

I saw this in a textbook, but the book doesn't explain what it actually does, and why I should do this. Here is something similar to the example in the book: class MyClass { public: ...
1
vote
9answers
210 views

Any way to call the default constructor from a parameterized constructor?

Suppose, I have the following code class C { int i; String s; C(){ System.out.println("In main constructor"); // Other processing } C(int i){ ...
0
votes
4answers
48 views

Why does constructor with arg undefine the defualt constructor?

Consider - public class Class_A { public void func() {...} public void func(int a){...} All three - Class_A a = new Class_A(); // legal a.func(); // legal a.func(1); // legal But ...
0
votes
4answers
300 views

Cannot find symbol - constructor item()

Hello wondering if anyone could lend me a hand! // Create a Item oject item item = new item(); Error - Cannot find symbol - Constructor item(); public class ...
2
votes
3answers
109 views

Compiler generated default constructor working - C++

I am trying to learn about the default constructor working of class and am not able to figure out this situation: Case 1: class A { public: int m; string s; }; Then I create object ...
0
votes
1answer
125 views

Java Default Constructor Issue - What Actually Constitutes a 'Default Constructor'? [duplicate]

Possible Duplicate: Java default constructor I am working on Java practice questions and came across this : Given: class X {} class Y {Y () {}} class Z {z(int i ) {} } Which class has ...
1
vote
3answers
112 views

c++ class in a class default constructor

My concern is a default constructor and its initialisation list. In a simple case it's clear, like: class A { protected: double d1; //classB obj1; //how to initialize this one in a ...
45
votes
2answers
796 views

How is “=default” different from “{}” for default constructor and destructor?

I originally posted this as a question only about destructors, but now I'm adding consideration of the default constructor. Here's the original question: If I want to give my class a destructor ...
3
votes
2answers
96 views

min n elements with expensive or deleted default constructor

Given an array v (some STL container, i.e. std::vector< double >) of generally unsorted data (say assert(std::is_same< typeof(v), V >::value);). Over the elements of the array is defined ...
1
vote
1answer
113 views

non-dynamic constructors in c++ with icpc?

Is there a way to define a non-dynamic constructor which restricts the range of whichever default constructor lets me do struct foo { int *bar; }; static __thread foo myfoo[10] = {nullptr}; ? ...
2
votes
7answers
4k views

C++ Initializing Non-Static Member Array

I am working on editing some old C++ code that uses global arrays defined like so: int posLShd[5] = {250, 330, 512, 600, 680}; int posLArm[5] = {760, 635, 512, 320, 265}; int posRShd[5] = {765, 610, ...
10
votes
5answers
714 views

C# - Calling a struct constructor that has all defaulted parameters

I ran into this issue today when creating a struct to hold a bunch of data. Here is an example: public struct ExampleStruct { public int Value { get; private set; } public ExampleStruct(int ...
4
votes
3answers
256 views

Why can't we have this() and super() together in Java?

I have this program: public class A { public A(){ System.out.println("I am in A"); } public static void main(String args[]){ B a = new B("Test"); } } class B extends A { ...
1
vote
3answers
196 views

Create a default constructor in C++

This might be a stupid question but I can't find a lot of information on the web about creating your own default constructors in C++. It seems to just be a constructor with no parameters. However, I ...

1 2 3 4