this的学习

面试经常被问到this的问题,每次回答都感觉回答的不尽人意,今天周六就在家好好研究this的问题

1、function定义的时候this的指向是无法确定的,执行function的时候才知道this的指向,this最终指向调用它的地方

funtion test(){

  var name = 'seed';

  console.log(this.name);

console.log(this);

  console.log(this.test);

}

test();

上面console.log(this)打印出来的有test函数,alert函数,confirm函数等,window下面所持有的属性,console.log(this.test)打印出来的是test这个函数,都说明了此处的this指向Window,console.log(this.name)是undefined,因为此时this指向window,而此时window下面没有name这个属性

window.test()调用函数test,和test()调用的结果是一样的

2、var test = {

  var name = 'seed';

  checkName: function(){

    console.log(this.name) ;    //定义这个函数的时候this的指向是不明确的,调用的时候才知道

  }

 }

test.checkName()此时console.log(this.name)打印的是seed,因为checkName函数是test调用的,所以this指向test这个对象

上一篇:[系列] 使用 go modules 包管理工具(一)


下一篇:golang包管理工具