The default-constructor tag has no wiki summary.
5
votes
3answers
102 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
38 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
74 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 ...
3
votes
2answers
81 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??
0
votes
0answers
22 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 ...
4
votes
2answers
182 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 ...
0
votes
1answer
49 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>
...
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
173 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
89 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
102 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
57 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
72 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
103 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
128 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
157 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();
...
1
vote
2answers
75 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
81 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
166 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
128 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
110 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
51 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
91 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
68 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
77 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
461 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
343 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 ...
-3
votes
3answers
103 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
169 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)?
0
votes
4answers
164 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:
...
5
votes
1answer
170 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
...
1
vote
9answers
173 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 ...
2
votes
3answers
102 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
115 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
105 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
776 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 ...
10
votes
5answers
592 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 ...
1
vote
3answers
182 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
vote
1answer
112 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};
?
...
6
votes
4answers
164 views
Template neglects const (why?)
Does somebody know, why this compiles??
template< typename TBufferTypeFront, typename TBufferTypeBack = TBufferTypeFront>
class FrontBackBuffer{
public:
FrontBackBuffer(
const ...
0
votes
1answer
138 views
Cython and constructors of classes
I have a problem with Cython usage of default constructors.
My C++ class Node is the following
Node.h
class Node
{
public:
Node()
{
std::cerr << "calling no arg ...
3
votes
2answers
63 views
What Are the Benefits of the Object class having a public parameterless constructor?
I have been trying for some time to determine why the Object class has a public, parameterless constructor or, indeed, why it is not marked abstract.
I cannot see a reasonable circumstance where it ...
2
votes
3answers
116 views
constructor and destructor calls involved in object creation
I am using the following code snippet to compare two methods for creating an object in C++.
#include <iostream>
using std::cout;
using std::endl;
class Foo {
public:
Foo() : x(0) ...
0
votes
2answers
81 views
got C2758 error for my third party call
I declared my class as follows in my "first.h" :
class MyClass
{
public:
MyClass ( cv::Mat& _model ) : tmpM ( _model )
{
};
private:
cv::Mat& tmpM;
}
then in "first.cpp", I used ...
2
votes
2answers
146 views
C++ default constructor: string params vs string params() [duplicate]
Possible Duplicate:
Is no parentheses on a constructor with no arguments a language standard?
Can anyone explain why these line don't give me an error:
string params;
params+="d";
but ...
0
votes
1answer
78 views
Eigen's Map<> as a class member
I'm trying to have a class that contains array but have an interface to them through eigen.
class A {
public:
array<double,3> xa;
Map<Matrix<double,3,1>> x;
A() : ...
0
votes
1answer
134 views
In Akka Java actor model, can a router create actors with non-default constructor?
In Akka Java actor model, if I have a RoundRobinRouter, when its tell() method is called, I want the router (as the master) to create children actors with non-default constructor because I need to ...
0
votes
3answers
67 views
How do I get the default constructor value in a function
AppXmlLogWritter objParameterized = new AppXmlLogWritter(1234, "LogApplication", "LogFilepath");
AppXmlLogWritter objParmeterlessConstr = new AppXmlLogWritter();
objParameterized.WriteXmlLog("0", ...




