Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
19k 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 ...
15
votes
1answer
787 views

variadic constructors

Are variadic constructors supposed to hide the implicitly generated ones, i.e. the default constructor and the copy constructor? struct Foo { template<typename... Args> ...
10
votes
7answers
393 views

Is it possible in java to create 'blank' instance of class without no-arg constructor using reflection?

I have a class which has not default constructor. And I need a way to get 'blank' instance of this class. 'blank' means that after instantiation all class fields should has default values like null, 0 ...
10
votes
6answers
16k 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 ...
8
votes
7answers
367 views

Is there a reason to explicitly code a default constructor when there are no other constructors?

I recently saw this constructor in a class: public MyClass(){ } There were no other constructors. Is there a reason for this? Java automatically creates a default constructor, so why would you ...
8
votes
4answers
2k views

Why does the parameterless Guid constructor generate an empty GUID?

Why does the parameterless Guid constructor generate an empty GUID rather than default to a generated one as with Guid.NewGuid()? Is there a particular use for an empty Guid?
7
votes
3answers
150 views

uninitialized const

This compiles perfectly fine with the current MSVC compiler: struct Foo { } const foo; However, it fails to compile with the current g++ compiler: error: uninitialized const 'foo' [-fpermissive] ...
7
votes
2answers
345 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 ...
7
votes
7answers
579 views

Should we always include a default constructor in the class?

I have been asked this question by a colleague that should we always include a default constructor in a class? If so, why? If no, why not? Example public class Foo { Foo() { } Foo(int x, ...
6
votes
5answers
175 views

C++: Is default copy constructor affected by presence of other constructors and destructor?

As we know, if any constructor is declared (copy constructor included), default constructor (the one that takes no arguments) is not implicitly created. Does the same happen with a default copy ...
6
votes
5answers
591 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, ...
6
votes
3answers
566 views

compiler generated constructors

This is just a quick question to understand correctly what happens when you create a class with a constructor like this: class A { public: A() {} }; I know that no default constructor is ...
5
votes
2answers
125 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
103 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() { ...
5
votes
2answers
110 views

How to prevent default initialization of a const variable with a class type

I have a custom class that I want to behave like a built-in type. However I have noticed that you can initialise a const variable of that class without providing an initial value. My class currently ...
5
votes
5answers
144 views

Default constructor in C++

everybody. I was just curious about the question, but couldn't find the answer in the Internet. Let's suppose we have simple header: // SimpleHeader.h class SimpleClass { int i; } As we ...
5
votes
2answers
163 views

Default constructor defined with default arguments outside the class definition, why does this work? and what happens with templates involved?

I am aware this is bad form and that default-values should be specified in the declaration, but if you would please indulge me for a moment.. why does this compile? and what is happening exactly? ...
5
votes
4answers
143 views

Template functions: default construction without copy-constructing in C++

Considering struct C { C() { printf("C::C()\n" ); } C(int) { printf("C::C(int)\n" ); } C( const C& ) { printf("copy-constructed\n"); } }; And a ...
5
votes
1answer
507 views

Purpose of Explicit Default Constructors

I recently noticed a class in C++0x that calls for an explicit default constructor. However, I'm failing to come up with a scenario in which a default constructor can be called implicitly. It seems ...
5
votes
3answers
281 views

Blindly converting structs to classes to hide the default constructor?

I read all the questions related to this topic, and they all give reasons why a default constructor on a struct is not available in C#, but I have not yet found anyone who suggests a general course of ...
5
votes
2answers
842 views

Default construction of elements in a vector

While reading the answers to this question I got a doubt regarding the default construction of the objects in the vector. To test it I wrote the following test code: struct Test { int m_n; ...
4
votes
2answers
139 views

Google Test - Constructor declaration error

I am trying to create a test fixture class from a normal class with constructor declaration (with arguments) as shown below: hello.h class hello { public: hello(const uint32_t argID, const uint8_t ...
4
votes
6answers
165 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 ...
4
votes
1answer
123 views

Difference between default-initialize and value-initialize in C++03?

I had always thought that creating a new object would always call the default constructor on an object, and whether the constructor was explicit or automatically generated by the compiler made no ...
4
votes
3answers
113 views

How to get the default value for a ValueType Type with reflection

If I have a generic type parameter that is a value type and I want to know if a value is equal to the default I test it like this: static bool IsDefault<T>(T value){ where T: struct ...
4
votes
4answers
534 views

C++ default constructor

If we say that the default constructor is that constructor without parameters, can we also say the the constructor created by the compiler is also a default constructor? Thanks.
4
votes
2answers
144 views

Default constructor for an inherited class

I've reduced my problem down to the following example code: class pokemon{ public: pokemon(int n); }; class MewTwo : public pokemon { public: MewTwo(int n); }; ...
4
votes
4answers
912 views

Why don't std::vector's elements need a default constructor?

And how can I write my own array class to not need a default constructor for its elements? Right now, when I do the new [] to allocate space, I need a default constructor. std::vector does not. How ...
4
votes
4answers
125 views

Why is my default constructor for array not getting called here?

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ...
3
votes
2answers
62 views

Compiler complaints for const object not initialized

I understand that a const object needs to initialized. So for the following code, class sample {}; int main() { const sample obj; return 0; } the compiler will complain because the const ...
3
votes
3answers
182 views

Does Spring require all beans to have a default constructor?

I don't want to create a default constructor for my auditRecord class. But Spring seems to insist on it: org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
3
votes
6answers
178 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 ...
3
votes
2answers
385 views

Naming user controls without default constructors in XAML

I have a user control without a parameterless constructor; let's call it WithoutDefaultConstructor. I want to insert a WithoutDefaultConstructor called myControl into the XAML code of another control ...
3
votes
5answers
1k views

Array initialization with default constructor

public class Sample { static int count = 0; public int abc; public Sample() { abc = ++Sample.count; } } I want to create an array of above class, and want each ...
3
votes
3answers
101 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 ...
3
votes
6answers
339 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; ...
3
votes
3answers
2k views

Java: Instantiating a generic class with no default constructor

I am trying to do this: public class BaseTable<T extends TableEntry> { protected int mRows; protected int mCols; protected ArrayList<T> mEntries; public BaseTable(int ...
2
votes
2answers
30 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 ...
2
votes
1answer
59 views

iterator default constructor and POD member initialization

From an example [1] in the documentation for boost::iterator_facade: class node_iterator : public boost::iterator_facade< /* ... */ > { public: node_iterator() : m_node(0) { } /* ...
2
votes
1answer
76 views

Strange behavior of default constructor in a class inherited from POD struct

This question relates to this one. As I mentioned in previous question I've decided to inherit my class from Win structure BITMAP to provide some extended functionality. I've noticed interest detail ...
2
votes
1answer
176 views

Will default-constructing an integer array zero-initialize it?

If I have a structure with an array member, and I explicitly call the default constructor of the array in the structure's constructor, will the elements get default-constructed? (In the case of an ...
2
votes
4answers
134 views

Is assembly code created for Default Constructor in C++

If I do not define a default constructor in a class in C++ , or any other constructors, I have read that the compiler creates a default constructor for you. But I created a test class, compiled it to ...
2
votes
7answers
294 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, ...
2
votes
4answers
138 views

Can we have a body for the default constructor in C++?

Can we have a body for the default constructor in C++? Thanks.
2
votes
2answers
229 views

Trouble overriding save_construct_data when serializing a pointer to a class without a default constructor

I'm trying to follow this example http://www.boost.org/doc/libs/1_42_0/libs/serialization/doc/serialization.html#constructors but I keep getting errors. Following the example, I get an error trying ...
2
votes
2answers
194 views

What is the code : base()

What is the purpose of base() in the following code? class mytextbox : TextBox { public mytextbox() : base() { this.Text = "stack"; } } Why At design time messages are ...
2
votes
6answers
130 views

Correct use of this. in a class constructor

I was browsing some documentation for a physics library for XNA and noticed an example someone had used for creating a class for a Car. This is a pretty simple example: Class Car { private float ...
2
votes
3answers
2k views

Possible to use a singleton with a non-default constructor in C#?

I'm implementing a notification framework for one of my projects. As i want it to be very generic, the user can use several transport layers, so that he doesn't really need to care about using one ...
1
vote
3answers
57 views

Preferred way of marking a Java constructor/method as not for client use?

I want to mark some default constructors and setters as not available/recommended for use. I need it to be somewhat similar to the annotation @Deprecated, but it shouldn't have the same meaning. I'm ...
1
vote
1answer
58 views

2 different types of constructor invocation from copy constructor

Consider the sample code below: #include <iostream> using namespace std; class core { public: core(const core& obj) { cout << "core copy ctor called\n"; ...

1 2