Tagged Questions
Keyword that refers to the current class instance / object in most object-oriented programming languages.
336
votes
6answers
360k views
$(this) selector and children?
I'd like to use a selector to select the child img of the div I'm clicking on this example:
<div id="..."><img src="..."></div>
To get the div, I've got this selector:
$(this)
...
38
votes
10answers
2k views
Can “this” ever be null in Java?
Saw this line in a class method and my first reaction was to ridicule the developer that wrote it.. But then, I figured I should make sure I was right first.
public void ...
38
votes
5answers
2k views
Why 'this' is a pointer and not a reference?
I was reading the answers to this question C++ pros and cons and got this doubt while reading the comments. Why the this is a pointer a not a reference ? Any particular reason for making it a pointer?
...
32
votes
3answers
10k views
Javascript: how to set “this” variable easily?
I have a pretty good understanding of Javascript, except that I can't figure out a nice way to set the "this" variable. Consider:
var myFunction = function(){
alert(this.foo_variable);
}
var ...
31
votes
6answers
26k views
jQuery first child of “this”
I'm trying to pass "this" from a clicked span to a jQuery function that can then execute jQuery on that clicked element's first child. Can't seem to get it right...
<p ...
28
votes
4answers
21k views
jQuery $(this) vs this
I am currently working through this tutorial: Getting Started with jQuery
For the two examples below:
$("#orderedlist").find("li").each(function(i) {
$(this).append( " BAM! " + i );
});
...
25
votes
2answers
25k views
jQuery: exclude $(this) from selector
I have something like this:
<div class="content">
<a href="#">A</a>
</div>
<div class="content">
<a href="#">B</a>
</div>
<div ...
24
votes
14answers
1k views
Use “this” everywhere? [closed]
Coding style question:
Within a class' methods, is it advisable to use this.myField rather than just myField? Always? Or should this never be done, except when myField is shadowed by a method (or ...
24
votes
14answers
2k views
When should I use “this” in a class?
I know that this refers to a current object. But I do not know when I really need to use it. For example, will be there any difference if I use x instead of this.x in some of the methods? May be x ...
18
votes
2answers
4k views
Access “this” from Java anonymous class
Given the following code:
public interface Selectable {
public void select();
}
public class Container implements Selectable {
public void select() {
...
}
public void ...
18
votes
5answers
6k views
Use of “this” keyword in formal parameters for static methods in C#
I've come across several instances of C# code like the following:
public static int Foo(this MyClass arg)
I haven't been able to find an explanation of what the this keyword means in this case. Any ...
17
votes
2answers
3k views
What does var that = this; mean in javascript?
In a javascript file I saw:
function Somfunction(){
var that = this;
...
}
What does this do precisely?
14
votes
6answers
4k views
jQuery/JavaScript “this” pointer confusion
The behavior of "this" when function bar is called is baffling me. See the code below. Is there any way to arrange for "this" to be a plain old js object instance when bar is called from a click ...
13
votes
10answers
413 views
Returning *this in member functions
I recently used a library that allows the following type of syntax:
MyClass myObject;
myObject
.setMember1("string value")
.setMember2(4.0f)
.setMember3(-1);
Obviously this is ...
13
votes
5answers
543 views
Why do I have to use $(this)? [closed]
Possible Duplicate:
jQuery $(this) vs this
In jquery sometimes I find that within a function I have to use $(this) because this won't work:
var listItems = $('li');
...
12
votes
6answers
399 views
what will happen if you delete this in C++ [closed]
Possible Duplicate:
Is it OK to use “delete this” to delete the current object?
I just saw some code where they have done delete this; in a class function, I know that this is ...
12
votes
6answers
204 views
Difference between $(this) and this in jquery
What is the fundamental difference between using $(this) vs this
$('.viewComments').click(function(ev){
//returns the desired value
alert(this.getAttribute('id'));
//Gives an error sayin ...
12
votes
3answers
304 views
What is an “incompletely constructed object”?
Goetz's Java Concurrency in Practice, page 41, mentions how this reference can escape during construction. A "don't do this" example:
public class ThisEscape {
public ThisEscape(EventSource ...
12
votes
5answers
484 views
Why doesn't the compiler at least warn on this == null
Why does the C# compiler not even complain with a warning on this code? :
if (this == null)
{
// ...
}
Obviously the condition will never be satisfied..
11
votes
4answers
463 views
Why can iterators in structs modify this?
I discovered that iterator methods in value types are allowed to modify this.
However, due to limitations in the CLR, the modifications are not seen by the calling method. (this is passed by value)
...
11
votes
7answers
301 views
What's the difference between $(this) and this in jQuery?
What's the difference between $(this) and this in jQuery, and why do they sometimes give the same result and other times behave differently?
11
votes
8answers
11k views
C# When To Use “This” Keyword [closed]
Possible Duplicate:
When do you use the “this” keyword?
Hello,
I understand that the "This" keyword is used to refer to an instance of the class, however, suppose I have a class ...
11
votes
11answers
9k views
Should objects delete themselves in C++?
I've spent the last 4 years in C# so I'm interested in current best practices and common design patterns in C++. Consider the following partial example:
class World
{
public:
void Add(Object ...
10
votes
9answers
392 views
Is there a difference between using “this” pointer and not using it?
Does using "this" pointer adds another operation to the program at runtime?
Just to give an example to explain the question better:
class C
{
public:
void set_x(int val){ x = val; }
void ...
10
votes
4answers
266 views
Does using $this instead of $(this) provide a performance enhancement?
Assume I have the following example:
Example One
$('.my_Selector_Selected_More_Than_One_Element').each(function() {
$(this).stuff();
$(this).moreStuff();
$(this).otherStuff();
...
10
votes
4answers
1k views
Java: Class.this
I have a Java program that look like this.
public class LocalScreen extends Something {
.....
public void onMake () {
...
aFuncCall (LocalScreen.this, oneString, twoString);
...
10
votes
2answers
438 views
When is (this != this) in C++?
I have a very strange question.
I have a class/function :
class MCBSystem {
[...]
template <class Receiver>
void setCallBack(int i, Receiver* receiver, ...
10
votes
12answers
1k views
When should I make explicit use of the `this` pointer?
When should I explicitly write this->member in a method of
a class?
9
votes
4answers
163 views
Passing `this` before base constructors are done: UB or just dangerous?
Consider this smallest example (I could think of):
struct Bar;
struct Foo {
Bar* const b;
Foo(Bar* b) : b(b) {}
};
struct Bar {
Foo* const f;
Bar(Foo* f) : f(f) {}
};
struct Baz : Bar {
...
9
votes
2answers
519 views
“delete this” in constructor
What actually happen when I execute this code?
class MyClass
{
MyClass()
{
//do something
delete this;
}
}
9
votes
2answers
203 views
What is “Extending move semantics to *this” all about?
Please, could someone explain in plain English what is "Extending move semantics to *this"? I am referring to this proposal. All what am looking for is what is that & why do we need that. Note ...
9
votes
6answers
7k views
Java - Leaking this in constructor
I'd like to avoid (most of the) warnings of Netbeans 6.9.1, and I have a problem with the 'Leaking this in constructor' warning.
I understand the problem, calling a method in the constructor and ...
9
votes
15answers
775 views
What is purpose of a “this” pointer in C++?
What is purpose of this keyword. Doesn't the methods in a class have access to other peer members in the same class ? What is the need to call a this to call peer methods inside a class?
9
votes
3answers
9k views
Hide all but $(this) via :not in jQuery selector
Advanced title, simple question:
How to do the following in jQuery:
$("table tr").click(function() {
$("table tr:not(" + $(this) + ")").hide();
// $(this) is only to illustrate my problem
...
9
votes
11answers
588 views
How does the system know what to use when 'this' keyword is used?
How does the system know what to use when 'this' keyword is used?
Recently, I was asked this question in an interview. Having never thought about this, I replied back saying that the system will know ...
9
votes
8answers
391 views
What would be a better name for Javascript's “this”?
I'm coming from a Java background, with its class-based inheritance model, trying to get my head around Javascript's prototype-based inheritance model. Part of what is throwing me off, I think is ...
9
votes
4answers
1k views
What is the use of “delete this”?
Today, I have seen some legacy code. In the destructor there is a statement like "delete this". I think, this call will be recursive. Why it is working?
I made some quick search on Y!, I found that ...
8
votes
2answers
208 views
Using this keyword in destructor [closed]
While i investigate source code of Qt i saw that trolltech guys explicitly use this keyword to access a field on destructor.
inline ~QScopedPointer()
{
T *oldD = this->d;
...
8
votes
7answers
155 views
Does it matter if this is used in a C++ setter?
Suppose I have a c++ class with a private variable, x. For it's setter, is there any difference using this? Is there the potential for unwanted / unexpected behavior is I don't use this?
Setter:
...
8
votes
2answers
253 views
Is `new (this) MyClass();` undefined behaviour after directly calling the destructor?
In this question of mine, @DeadMG says that reinitializing a class through the this pointer is undefined behaviour. Is there any mentioning thereof in the standard somewhere?
Example:
#include ...
8
votes
3answers
148 views
Is C++ value of this guaranteed?
Consider I have a class Foo (that does not have its & operator overloaded) is the address obtained from the & operator of this class guaranteed to have the same value as its this pointer?
In ...
8
votes
5answers
423 views
question regarding “this” pointer in c++
i have been given class with int variables x and y in private, and an operator overload function,
class Bag{
private:
int x;
int y;
public:
Bag();
~Bag();
//.......
//.....etc
...
8
votes
4answers
209 views
this keyword as a property
I know c# well, but it is something strange for me.
In some old program, I have seen this code:
public MyType this[string name]
{
......some code that finally return instance of MyType
}
How it ...
8
votes
12answers
6k views
Should the Java “this” keyword be used when it is optional? [closed]
From what I gather as a Java beginner, when accessing instance members, the "this" keyword may apparently be used, but is not mandatory.
I wonder whether there is any official recommendation of sorts ...
8
votes
8answers
1k views
smart pointers + “this” considered harmful?
In a C++ project that uses smart pointers, such as boost::shared_ptr, what is a good design philosophy regarding use of "this"?
Consider that:
It's dangerous to store the raw pointer contained in ...
7
votes
1answer
214 views
“this” pointer getting corrupted in stack trace
I have seen this thread. My case is slightly different and I'm struggling to figure out how "this" pointer is getting corrupted.
I'm using the Qt 4.6.2 framework, using their QTreeView with my own ...
7
votes
4answers
163 views
Using “this” in Java vs Short Parameter Names
Which do you prefer and why?
public void setPresenter(Presenter presenter) {
this.presenter = presenter;
}
public void setPresenter(Presenter p) {
presenter = p;
}
7
votes
6answers
118 views
Pass $(this) to a function
Hey Guys,
I'm trying to builda media playlist that can advance the credits, play the video and change the title on thumb-hover, end of video and on next/prev click. So I need to write some functions ...
7
votes
6answers
408 views
Is there overhead using this-> in c++?
I have a class, and if I wish to reference a member variable from within a member function, i could write:
this->myVar = 10 // for example
or I could just write:
myVar = 10
I like to use this-> ...
7
votes
3answers
443 views
How do I pass the this context to a function?
I thought this would be something I could easily google, but maybe I'm not asking the right question...
How do I set whatever "this" refers to in a given javascript function?
for example, like with ...