Tagged Questions
3
votes
1answer
107 views
How to get this pointer from std::function?
Since std::function can hold member functions, so it must store a pointer to the object instance somewhere.
How can I fetch the this pointer from a std::function that holds a member function?
3
votes
2answers
166 views
Not possible: this pointer as a default argument. Why?
The following code won't compile. Why?
class A
{
int j;
void f( int i = this->j );
}
Edit, for clarity. This is what I was trying to do, using less lines of code...
class A
{
void f( ...
1
vote
2answers
221 views
std::shared_ptr of this
I am currently trying to learn how to use smart pointers. However while doing some experiments I discovered the following situation for which I could not find a satifying solution:
Imagine you have ...
0
votes
3answers
128 views
Connect Function
What is this in the following QT function call?
connect(findButton, SIGNAL(clicked()), this, SLOT(findClicked()));
I know the background of this in C++ but what is this pointing to in this function ...
-2
votes
3answers
236 views
Why was “this” used as a non const deprecated in C++
Why was this deprecated in C++? How is the this pointer in C++ different than this in Java?
Or is Wikipedia just wrong
Early versions of C++ would let the this pointer be changed; by doing
so a ...
0
votes
2answers
148 views
C++ internals: Messing with the this-pointer
I have some questions about the internal workings of C++. I know for example that every member function of a class has an implied hidden parameter, which is the this-pointer (much in the same way ...
1
vote
5answers
439 views
How does “this” pointer happen to point to different objects?
Suppose I have a class:
class test {
public:
void print();
private:
int x;
};
void test::print()
{
cout<< this->x;
}
and I have these variable definitions:
test object1;
...
1
vote
4answers
2k views
shared_ptr and the this-pointer
OK, I started using shared-pointers and pass shared-pointers as much as possible. No conversion to raw pointers anymore. This works good, except in this specific case:
Suppose we have a class that ...
2
votes
7answers
790 views
Is it okay to use the this pointer? [duplicate]
Possible Duplicates:
Is there any reason to use this->
When should this-> be used?
When should I make explicit use of the this pointer?
When working with pointers to classes, I ...
3
votes
4answers
581 views
Can you explain the concept of the this pointer? [closed]
I need to understand this pointer concept, preferably with an example.
I am new to C++, so please use simple language, so that I can understand it better.
