The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
125
votes
10answers
4k views

Why does the default parameterless constructor go away when you create one with parameters

In C#, C++ and Java, when you create a constructor taking parameters, the default parameterless one goes away. I have always just accepted this fact, but now I've started wondering why. What is the ...
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 ...
10
votes
3answers
2k 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] ...
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 ...
5
votes
1answer
555 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 ...
3
votes
1answer
263 views

Why does a class used as a value in a STL map need a default constructor in …?

Below is the class used as the value in a map: class Book { int m_nId; public: // Book() { } Inside main(): map< int, Book > mapBooks; for( int i = 0; i < 10; ++i ) { ...
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?
10
votes
7answers
1k 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
5answers
7k 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 ...
10
votes
1answer
250 views

Should (in C++11) std::vector::resize(size_type) work for the default constructible value_type int[4]?

In C++11, there are two versions of std::vector::resize(): void resize( size_type count ); void resize( size_type count, const value_type& value); I understand (as suggested by one of the ...
3
votes
4answers
283 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 ...
2
votes
1answer
198 views

C++ calling the default constructor with parens vs without parens [duplicate]

Possible Duplicate: different types of initialization in C++ Is there any difference at all between calling the base constructor like Foo afoo; vs Foo afoo();
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, ...
2
votes
3answers
4k views

How to mock the default constructor of the Date class with JMockit?

I want to mock the default constructor of java.util.date so it does not construct a Date object representing the time when it was created, but always the same Date object (in my example below 31 Dec ...
2
votes
3answers
371 views

Detect compiler generated default constructor using reflection in C#

I'm targeting .NET 3.5 SP1 and I'm using CommentChecker to validate my XML documentation, everything works OK until I get to a class like this: /// <summary> /// documentation /// ...
45
votes
2answers
795 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 ...
13
votes
7answers
4k 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, ...
8
votes
3answers
3k 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 ...
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, ...
4
votes
1answer
894 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 ...
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; ...
10
votes
5answers
713 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
2answers
2k 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 ...
6
votes
2answers
1k 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
4answers
4k 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 ...
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 ...
2
votes
2answers
154 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 ...
2
votes
1answer
138 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
2answers
503 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
7answers
833 views

C++: Creating an uninitialized placeholder variable rather than a default object

I'm moving from Java to C++ right now and I'm having some difficulties whenever a commonly used concept in Java doesn't map directly into C++. For instance, in Java I would do something like: Fruit ...
2
votes
4answers
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 ...
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
6answers
1k views

C++ standard list and default-constructible types

Why is that the single parameter constructor of std::list<T> requires T to be a default-constructible type? I mean the following code does not compile. struct Foo { // does not have default ...