"this" in C# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

"this" in C#

I'm struggling to comprehend what does the "this" exactly do in C#. I thought it's only used to call an "object" of a class, inside the same class without the need of earlier introduction. But it seems that it's further than that, so what does it really do? Any help/explanation would be welcomed.

19th Oct 2017, 3:15 PM
Bourhan Dernayka
Bourhan Dernayka - avatar
13 Answers
+ 4
public Fraction(Fraction original) : this(original.num,original.den) { } The first constructor is not called in the body of the method but in the method definition There is a : missing public Fraction //method name (Fraction original) //parameters : //use anonther constructor this(original.num,original.den) //parameters of the other constructor { //body second constructor } It is called constructor chaining
19th Oct 2017, 7:22 PM
sneeze
sneeze - avatar
+ 7
@sneeze It can point to anything within the current instance of the Object.
19th Oct 2017, 4:14 PM
Rrestoring faith
Rrestoring faith - avatar
+ 6
It refers to the current Object. Example/ public ClassName getClassInstance(){ return this; // returning this object } You can use it to return or pass the current instance. To call the current instances constructors or members. To differentiate between instance variables and local variables. To reassign a struct value. Ex/ this = new StructName(); And probably many more. The main idea is that it's just talking about the current instance of the class. So, if I do something like this: Animal a = new Animal(); Animal b = a; bool c = a.isEqual(b); Then in the Animal class I could have: public bool isEqual(Animal anim){ return this == anim; } Here I'm just saying 'is the reference of this object equal to the one I passed in the parameters'. If we look back at when we called the method: a.isEqual(b); We used an instance of a to call the method, so 'this' refers to the Animal a. The method will return true.
19th Oct 2017, 3:48 PM
Rrestoring faith
Rrestoring faith - avatar
+ 2
In a constructor. Consider a class Fraction that has in it's field 2 integers: num, den; First constructor: public Fraction(int n, int d) { num=n; den=d; } Second constructor: public Fraction(Fraction original) { this(original.num,original.den); }
19th Oct 2017, 3:29 PM
Bourhan Dernayka
Bourhan Dernayka - avatar
+ 2
So this in your example points to the first constructor. this can not only point to variables but also to methods.
19th Oct 2017, 3:56 PM
sneeze
sneeze - avatar
+ 1
Your thought is totally correct. this does not do anything more. Where have seen this being used in a place you did not expect?
19th Oct 2017, 3:23 PM
sneeze
sneeze - avatar
0
@Rrestoring faith That is true.
19th Oct 2017, 4:28 PM
sneeze
sneeze - avatar
0
Okay thanks guys. @sneeze @Restoring faith
19th Oct 2017, 6:27 PM
Bourhan Dernayka
Bourhan Dernayka - avatar
0
Guys... I tried my snippet of code that i posted in the comments, it returned an error for using "this". It said: Method Name Expected.... Why? Shouldn't it work ???
19th Oct 2017, 6:46 PM
Bourhan Dernayka
Bourhan Dernayka - avatar
0
Are you missing a dot behind this ? also should it be this.Fraction (...);
19th Oct 2017, 6:48 PM
sneeze
sneeze - avatar
0
Tried them both... Neither one worked
19th Oct 2017, 6:54 PM
Bourhan Dernayka
Bourhan Dernayka - avatar
0
Thanks! Finally the answer... but could you explain why?
19th Oct 2017, 7:02 PM
Bourhan Dernayka
Bourhan Dernayka - avatar
0
see the update in previous post
19th Oct 2017, 7:06 PM
sneeze
sneeze - avatar