Tagged Questions
0
votes
1answer
56 views
Can't find .dtors and .ctors in binary
I am reading the book Hacking, tha art of exploitation. In the book there is a section that explain the use of .dtors and .ctors. I'm trying to reproduce one of the exercices of the book but in my ...
0
votes
3answers
10 views
Explantation about inheritance
I have two classes, while B derives A.
I created a pointer to A, is called: a2. please take a look in my main function.
What does this line do?
a2 = new B();
Why when I delete a2, only the ...
5
votes
5answers
101 views
Constructor/Destructor call order on stack
I have the following simple code:
class A
{
int a;
public:
A(int a) : a(a) { cout << "Constructor a=" << a << endl; }
~A() { cout << "Destructor a=" ...
0
votes
2answers
38 views
How can I delete the default constructor for a C++/CLI class?
I have a set of C++/CLI classes I've written as wrappers to native C++ classes. For the C++/CLI classes: I placed the constructor declarations inside the private section of the class declarations and ...
-1
votes
2answers
90 views
C++ Destructors , dynamic allocation
I have recently had some errors (bad_alloc) due to my lack of a destructor.
I currently have two classes, set up in this way:
class ObjOne {
friend class ObjTwo;
public: ...
0
votes
1answer
70 views
When to use constructor and destructor, especially in containers and across threads
I have a multi-threaded program (a client-server one, but not necessarily relevant in this question) where multiple threads access global queues. There are two queues: msgs_inc and clients_msg which ...
0
votes
2answers
160 views
C++: “error C4430: missing type specifier - int assumed” For constructor and invalid declaration for destructor
I have this CResources class declaration,
and i get this error
"error C4430: missing type specifier - int assumed"
#include <set>
#include <unordered_set>
const int R_NUMBER = 5;
...
0
votes
1answer
40 views
Regarding passing a string through a Get and Set Method
Let me start off by saying I am a beginner at C++. I am trying to write a program that simply asks the user for 3 inputs. Two are strings and one is an integer. I have written the following class for ...
0
votes
0answers
68 views
c++ Implement a class using static memory to dynamic memory
So I have this class called LlistaEquips which has a table of another class called equip.
I have it on static memory but I need to do it with dynamic memory now. This is my LlistaEquips.h I have to ...
0
votes
1answer
75 views
C++ constructor, destructor, type conversion error
Hey guys I am trying to create a implementation file for a module. It has a header file I created and a .CC file. In my .CC file I originally had a main function, however as this is an assignment for ...
-1
votes
1answer
148 views
C++ using vectors error [closed]
I use the following code but when I run it it shows the "stopped working" window and the console shows "Process exited with return value 3221225477"
#include <iostream>
#include <vector>
...
4
votes
1answer
72 views
templated placement new and destructor
why that does not compile?
template <typename T>
class Pool{
char Buff[sizeof(T)*256];
public:
Pool(){
T* item = reinterpret_cast<T*>(&Buff[0]);
for(int i ...
2
votes
5answers
128 views
Why are constructors and destructors called when they are? What are they actually doing? C++
I'm sort of new to the technical reasons for constructors and destructors. I wrote a program with functions that display an objects starting state, end state, memory location, value, and when the ...
-1
votes
1answer
95 views
order of calling constructor in inheritance
I am new to C++ programming language, i have a confusion about order of calling the constructor in inheritance. my question is even though the constructor and destructor are not inherited by derived ...
1
vote
2answers
147 views
why first calling base class constructor and then derived class constructor
According to c++ rules, when defining a derived class object, the base class constructor is called to initialize the base class members and then the derived class constructor. For the destructor, the ...
2
votes
3answers
93 views
Constructor c++ Object obj = Object(“string”, 22); creating a temporary Object?
I asked in the chat area of stackoverflow the following question.
If you create your object like this does it create a temporary and then call the assignment operator to assign the temp to the obj ...
6
votes
4answers
221 views
Is invoking the destructor before the constructor has finished legal?
Suppose I have a class whose constructor spawns a thread that deletes the object:
class foo {
public:
foo()
: // initialize other data-members
, t(std::bind(&foo::self_destruct, ...
1
vote
2answers
102 views
__attribute__((constructor)) && __attribute__((destructor)) in multithreaded app
I have an app that I am currently writing in C , where I have several TLS static global variables declared inside a library which is part of the project.
The TLS variables are declared using gcc's ...
0
votes
3answers
184 views
Initializing an object inside the constructor and not in initialization list
I've got the following class holding 3 datatypes:
class CentralBank{
MaxHeap richestBanks;
HashTable banks;
AccountTree accounts;
public:
CentralBank(int numAccounts, Account* ...
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
...
2
votes
3answers
115 views
Dealing with protected/private constructor/destructor for a CRTP design?
Consider the following code:
#include <iostream>
#include <type_traits>
// Abstract base class
template<class Crtp>
class Base
{
// Lifecycle
public: // MARKER 1
...
1
vote
3answers
87 views
Displaying object name inside destructor
Inside FileTwo.h
#include"iostream"
using namespace std ;
class FileTwo{
public:
FileTwo(){
cout<<"constructor for";//Here want to show the object for which the ...
8
votes
5answers
785 views
C++ Constructor/Destructor inheritance
EDIT : Summary of answers
In the following, B is a subclass of A.
It's a matter of terminology; ctors and dtors are not inherited, in the sense that the ctor/dtor of B will not be borrowed from A's ...
-2
votes
1answer
101 views
OpenGL/C++ complication. Deconstructor/Constructer Var Error
I am creating a class named Square and functions to calculate x,y,z position to create 4 vertex to render a square in OpenGL.
Errors
8 [Error] expected constructor, destructor, or type ...
0
votes
2answers
96 views
I can't understand what is wrong with the destructors?
I have a class called polygon which is my base class in which I have area and perimeter and I need to derive a rectangle class from it. Right now the program below doesn't work work and it gives me ...
0
votes
1answer
47 views
Preventing a hierarchy of classes from being created on the stack
I'm not sure if this is possible.
I need to prevent a all classes derived from X from being instantiated as local stack or member variables. I made all their destructors protected and this did the ...
3
votes
2answers
150 views
C++ inheritance and constructors, destructors
//Parent.h
class Parent{
public:
Parent(){}
~Parent(){}
virtual void func1() = 0;
};
//Child.h
#include "Parent.h"
class Child : public Parent{
int x, y;
public:
Child() : Parent(){ ...
2
votes
3answers
100 views
constructor vs destructor environment assemble
A constructor assembles the execution environment for the member
functions for a class from the bottom up (members first). The
destructor disassembles it from the top down (members last).
...
5
votes
2answers
90 views
C++ Strange constructor behaviour
Can anybody explain to me the difference between Complex a; and Complex b();?
#include<iostream>
class Complex
{
public:
Complex()
{
std::cout << "Complex Constructor 1" ...
-1
votes
4answers
90 views
retain another copy of object pointers after calling destructor to reuse data
I am working on a board based game like checkers. Every tile on the board has certain properties. Before changing the board status, I want to save it's state and use it to undo the last move. As the ...
3
votes
2answers
164 views
C++ Using object reference after destructor (possibly) gets called
Suppose, I have the following code:
class Data
{
private:
int *m_arr;
int m_size;
bool m_deAlloc;
public:
Data(int *arr, int size): m_arr(arr), m_size(size), m_deAlloc(false) {}
...
1
vote
2answers
111 views
How to call destructor of type in template?
For example, we have a function like that:
template <typename TYPE>
void construct_and_destruct(TYPE & object)
{
//...
}
We cant call constructor and destructor like object.Type() and ...
0
votes
2answers
144 views
destructor and in linked lists
Why are the destructor and the copy constructor necessary for the pointer-based implementation of the linked list? Im trying to understand the concept behind it and how it works exactly.
3
votes
2answers
73 views
Why X(X&) could be called for two times?
I wrote this code:
struct X{
int val;
void out(const string& s, int nv)
{cerr<<this<<"->"<<s<<": ...
5
votes
5answers
181 views
Naming convention for constructors and destructors in C [closed]
Suppose I have a struct list, and I want to provide a "constructor" and a "destructor" function. How should I name them, respectively?
void list__init(struct list * self);
void list__construct(struct ...
1
vote
2answers
148 views
Strange behavior in C++ constructor\destructor
I was playing with C++ class constructor function by using it recursively to print "trauth table". Everything was seem to be normal until I decided "why not using destructor too recursively?". When I ...
0
votes
5answers
124 views
InnerClass object being a member of OuterClass object is created twice
I have two classes: OuterClass and InnerClass. InnerClass is a private member of OuterClass and should be created in OuterClass constructor with an InnerClass(int) constructor, however the default ...
1
vote
3answers
114 views
Compiler behavior regarding class objects I don't understand
I'm a noob and still learning the c++ language. The thing is, doing an exercise from a book, I've come across a compiler behavior I don't understand.
The header file.
// stock10.h -- Stock ...
0
votes
3answers
128 views
c++ destructors
consider this scenario:
I need to create a ui for some settings. As, data and ui should be separated in theory, I defined a separate class which takes care of the configuration data. The question I ...
0
votes
5answers
331 views
Constructors, destructors and pointers (and vectors and arrays and delete and that)
Funky title, but honestly I couldn't think of anyone better, sorry :(
While experimenting with pointers I came across this and I need help understanding it. Basically, I create a vector of a pointer ...
2
votes
4answers
72 views
Constrain the lifetime of a data member to one method
I have encountered a slightly unusual problem. Consider the following code:
class parser
{
lexer lex;
public:
node_ptr parse(const std::string& expression)
{
...
0
votes
3answers
90 views
Is the constructor of a derived class called when we new it using a base pointer
Class Shape {
virtual Shape() = 0;
virtual ~Shape() = 0;
}
Class Circle : Public Shape {
Circle();
~Circle();
// Something ...
}
int main () {
Shape* s = new Circle();
delete s;
...
3
votes
4answers
263 views
C++: Why does my destructor run twice?
While doing my programming assignments, I seem to be stumbling over basic C++ concepts. I found the bug in my program and it was caused by my destructor running more times than I expected. Here is a ...
2
votes
2answers
157 views
testing whether a function is virtual or is a constructor
I was reading Never Call Virtual Functions during Construction or Destruction by Scott Meyer about basic C++ usage.
I was wondering if g++ has some compiler flags to warn about this bad coding that ...
5
votes
2answers
118 views
How to enforce calling order of destructors
I am trying to get the following setup right:
A given application (with multiple source files, compilation units) has global variables of type class A defined in many compilation units.
These should ...
-3
votes
2answers
59 views
Just wondering what will happen if you do this?
Calling __construct() function from __destruct(),
<?php
public function __construct() {
echo "Hi";
}
public function __destruct() {
$this->__construct();
}
?>
will it create ...
3
votes
6answers
405 views
Practical application of class destructor
I'm currently trying to learn about classes and constructors/destructors. I understand what the two do, but I'm having a harder time with the destructors because I can't think of a practical ...
7
votes
3answers
850 views
What destructors are run when the constructor throws an exception?
In C++, if a constructor throws an exception, what destructors are run?
In particular, does it make any difference if the exception is during the initialization list or the body?
Also, what about ...
0
votes
1answer
174 views
Constructor/Destructor involving a class and a struct
I am working on a program and need to make an array of objects, specifically I have a 31x1 array where each position is an object, (each object is basically built out of 6 ints). Here is what I have ...
0
votes
2answers
1k views
No Virtual constructors but virtual destructor
If we dont have virtual constructors then why we have virtual destructors? Can constructors also be virtual?


