Tagged Questions
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 ...
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 ...
1
vote
1answer
465 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";
...
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 << ...
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 ...
7
votes
5answers
437 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
4answers
189 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 ...
1
vote
2answers
318 views
Does the implicitly defined copy constructor in C++ call copy constructor for members too right?
Just want to double check that the default (implicitly defined by compiler) copy constructor for C++ classes performs the copy constructor on each member variable as well using the old value to get ...
0
votes
1answer
650 views
C++ unrestricted union workaround
#include <stdio.h>
struct B { int x,y; };
struct A : public B {
// This whines about "copy assignment operator not allowed in union"
//A& operator =(const A& a) { printf("A=A ...
6
votes
3answers
2k 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 ...
1
vote
8answers
589 views
Is it correct to use declaration only for empty private constructors in C++?
For example is this correct:
class C
{
private:
C();
C(const & C other);
}
or you should rather provide definition(s):
class C
{
private:
C() {};
C(const & C ...