Tagged Questions
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 ...
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 ...
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 ...
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 ...
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_, ...
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 ...
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);
...
};
...
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 ...
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
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
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 ...
3
votes
1answer
836 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
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 ...
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:
...
5
votes
1answer
185 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
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
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 ...
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
143 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 ...
0
votes
2answers
86 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 ...
-4
votes
3answers
224 views
In multiple inheritance ( diamond shape), grand parent's default constructor called [closed]
#include<iostream>
using namespace std;
class Person {
// Data members of person
public:
Person(int x) { cout << "Person::Person(int ) called" << endl; }
};
class Faculty ...
3
votes
1answer
88 views
Are these assignments on same pattern? [duplicate]
Possible Duplicate:
Shortcut for constructor
Are the following pieces of code the same in C++:
Piece1:
MyFunnyClass o = MyFunnyClass();
Piece2:
MyFunnyClass o;
I am aware that the ...
0
votes
4answers
412 views
If we overload a constructor in c++ does the default constructor still exist? [duplicate]
Possible Duplicate:
Why does the default parameterless constructor go away when you create one with parameters
I wrote the following program
#include <iostream>
class A {
public:
...
3
votes
4answers
282 views
C++ Object Instantiation vs Assignment
What is the difference between this:
TestClass t;
And this:
TestClass t = TestClass();
I expected that the second might call the constructor twice and then operator=, but instead it calls the ...
11
votes
1answer
213 views
In C++, is a constructor with only default arguments a default constructor?
In the following code:
struct Foo
{
Foo(int x=0);
};
Does the constructor count as a default constructor?
4
votes
2answers
201 views
Explicitly defaulted move constructor
According to the c++11 standard a default move constructor is only generated if:
X does not have a user-declared copy constructor, and
X does not have a user-declared copy assignment operator,
X ...
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
7answers
2k views
Using default Constructors in java, even if the parameterized constructors are present
I just wanted to clear my concept here, so i am asking...
If I define an explicit parameterized constructor for my class, then can i still invoke the default constructor provided by the java ...
0
votes
2answers
1k views
bean class instantiation in spring for a class without default constructor
I am using a third party library class XYZ as an argument in my model. XYZ does not have a default constructor. So spring is not able to create bean for it giving error message as
...
4
votes
3answers
151 views
At what condition is the default constructor generated?
I have the following class:
class Tileset { //base class
public:
static std::vector<Tileset*> list;
virtual ~Tileset() = 0;
protected:
std::vector<Tile> tiles_list;
...
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 ...
0
votes
4answers
79 views
Constructor related error in Java
I am new to Java and wrote this code. It has a simple class Box and two attributes width and length and some functions.
class Box
{
private int width;
private int length;
Box(int w, int ...
3
votes
2answers
170 views
Compiler complaints for const object not initialized [duplicate]
Possible Duplicate:
uninitialized const
I understand that a const object needs to initialized.
So for the following code,
class sample
{};
int main()
{
const sample obj;
return 0;
...
5
votes
2answers
176 views
(Simple Constructor Concept) Why doesn't Foo(); do anything?
This is a simple C++ constructor concept I'm having trouble with.
Given this code snippet:
#include <iostream>
using namespace std;
class Foo
{
public:
Foo () { cout << ...
5
votes
2answers
143 views
Why is the compiler calling the default constructor?
Why do I receive the error below? (Why is the compiler trying to call the default constructor?)
#include <cmath>
template<typename F> struct Foo { Foo(F) { } };
int main()
{
...
2
votes
2answers
79 views
Copy Constructor going to base constructor and overwriting copied values
Constructor Conundrum, I have these two constructors. One is for making a copy of the class and the other is the standard constructor. I need to call the first one so that I can use the rule in it. I ...
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 ...
1
vote
2answers
247 views
defaulted default constructor ? in n3290 draft
A point from n3290 draft §12.1 (Constructors) ¶5:
An implicitly-declared default constructor is an inline public member of
its class. A defaulted default constructor for class X is defined as ...
3
votes
6answers
370 views
In which cases is there is no constructor at all, even a default constructor?
In this book I am currently reading I ran across this:
A class doesn't need a constructor. A default constructor is not needed if the object doesn't need initialization.
Am I correct in ...
0
votes
3answers
601 views
what does default constructor do when it's empty?
I wonder if anyone could explain what the default ctor does after memory allocated, how it initializes the allocated memory?
3
votes
2answers
1k views
Google Mock: “no appropriate default constructor available”?
Using Visual Studio 2010 C++ with googlemock. I'm trying to use a mock I created and I'm getting the compiler error on the line:
EmployeeFake employeeStub;
The error is:
...
0
votes
2answers
431 views
Pretty simple constructor question that I just can't get. Java
Create a class with a default constructor (one that takes no arguments) that prints a message. In your main() method, create an object of this class.
Add an overloaded constructor to your code from ...
0
votes
2answers
744 views
Custom Control Constructors
Pardon me for this long story, but I think the question merits it.
I have a custom control that I made, which had it's own overridden OnPaintBackground method which used a member Brush and Pen. I was ...
1
vote
4answers
308 views
Call on different constructor with 'default' HashMap
I had a lot of testcases running on the class MyClass, using it's default constructor: MyClass().
Now the requirements of MyClass changed and the user can provide a HashMap to indicate some pairs . ...
1
vote
4answers
455 views
constructor with one, default argument
i searched but could not find the answer.
So I have my c++ constructor:
MyClass(string username = "something");
note this is the only constructor I have.
in my main, I do:
MyClass one();
MyClass ...
6
votes
5answers
2k views
Are empty constructors always called in C++?
I have a general question, that may be a little compiler-specific.
I'm interested in the conditions under which a constructor will be called. Specifically, in release mode/builds optimised for speed, ...
11
votes
2answers
1k views
Why is a POD in a struct zero-initialized by an implicit constructor when creating an object in the heap or a temporary object in the stack?
The standard and the C++ book say that the default constructor for class type members is called by the implicit generated default constructor, but built-in types are not initialized. However, in this ...
6
votes
6answers
7k views
C++ default destructor
When I don't declare a constructor for example, the compiler will provide me with a default constructor that will have no arguments and no definition (body), and thus, will take no action.
If I now ...
3
votes
3answers
177 views
How do I make define and declare a variable using the default constructor in C++?
From my understanding of declarations and definitions, at the global scope:
MyClass instance();//Declares a function that returns a MyClass
MyClass instance;//Declares an instance of MyClass
Is it ...
4
votes
6answers
1k views
Accessing a Private Constructor from Outside the Class in C#
If I define a class with a private default constructor and a public constructor that has parameters, how can I access the private constructor?
public class Bob
{
public String Surname { get; ...


