How to explain 'this' keyword in a best and simple way?

佐手、 提交于 2019-11-28 01:21:16

A class is a mold for an object: it specifies how the object looks like (variables) and what it can do (functions).

If you instanciate a class: you create an object. If you create the class, you can use "this" to refer to the object itsself. This is why you can't set the "this", because it's related to the object. It's a special, read-only variable.

this references the current object instance of a class.

this is an implicitly parameter passed to the methods of a class: it is scoped to a method and allows access to all of the object's members.

Like their name suggests, instance methods operate on instances of a class. How do they know which one to operate on? That's what the this parameter is for.

When you invoke an instance method, you're really invisibly passing in an extra parameter: the object to invoke it on. For example, when you have this:

class Basket {
  public function a() {
    $this-> ...;
    // ...
  }
  // ...
}

and you call $some_basket->a(), behind the scenes you're actually calling something like Basket::a($some_basket). Now a() knows which Basket you want to work with. That special parameter is what this refers to: the current object you're dealing with.

short: $this gives you access to the object variables (and methods) Edit: within the class :) Edit 2: (but not in static methods of the class) :D

Several people have explained it in similar terms, but thought I'd add that when speaking to people unfamiliar with object oriented programming, I explain that the class definition is the blueprint, as for a house, and "this" is the actual house you're working with at that moment. There might be other houses that look exactly the same, but this is the specific object (house).

A class is a template or a 'die' for an object.

Lets use the classic 'bicycle' example. There are many huffy bikes out there. However, we have created one bike, and we can use the 'this' keyword to refer to 'this' bike.

In more a more technical sense, a class is a template for an object that will be instantiated. At run time, after an object has been instantiated, or had an instance of itself created, we can then use the keyword 'this' internally to refer to the instance that runs that method.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!