function大全

本文总结了JavaScript中五种不同类型的函数及其使用方式,包括对于window是私有函数、公有方法、对象的属性是方法、构造函数、私有方法等,并详细解释了每种函数的可使用变量及函数范围。

<script>
//私有、公有是站在类的高度看的
 function private4window(){      //(1)
//  func4Obj();         //正确
  alert("private4window");
 }      
 function func4Obj(){        //(2)
  alert("I can use 'this'!\n Actually I really should use 'this' to refer the obj's source^_^");
//  alert(localVar);     nestedFunc();          //不可访问私有变量和私有函数
  this.privilegeMethod();
  private4window();
 }
 function func4SingleObj(){       //(3)
  alert("propIsAMethod-->func4SingleObj can I use 'this'? this.publicMethod() Yes!");
//  this.publicMethod();                        //正确
 }
 function globalFunc(){       //(4)
  var localVar = "localVar";
  this.localThisVar = "this.localThisVar";
  
  function nestedFunc(){                      //(5)
   var nestedVar = "nestedVar";   
   this.nestedThisVar = "this.nestedThisVar";
  }   //private function declared as a function shorthand for var _doAnotherSomething = function() {}
  // I discovered that this.constructor is not available inside private functions of the object,
  // since this refers to the window object in that scope.
     nestedFunc();
     var _privateFunction = function() {          //same as nestedFunc(){} 私有方法
         alert('privateFunction...');
     };       //private function declared as a variable
    
  this.privilegeMethod = function(){                 //(6)        特权方法 每个实例一个
         alert("privilegeMethod can access to "+localVar);
         alert("privilegeMethod can access to "+this.localThisVar);
         nestedFunc();
        };
  
  this.publicMethod = func4Obj;                //public method(1)  属性每个实例一个,但方法并不复制
 }
 
 //You cannot (to my knowledge) assign public methods of a class inside the main object constructor...
 globalFunc.prototype.publicMethodUsePrototype = function() {     //(7)  
                  //public method(2)(实例方法--JS5) can access to public var
           alert(this.localThisVar);
            alert("globalFunc.prototype.publicMethodUsePrototype is a public method");
           };
 
 globalFunc.classMethod = function() {        //(8)
             //class method(类方法)
        private4window();
          alert("globalFunc.classMethod is a class method");
         };
 
 var obj = new globalFunc();
// obj.publicMethod();
 obj.propIsAMethod = func4SingleObj;                //这个是什么函数?   其实跟一个对象的变量没什么两样(难道说是这个实例的公有方法?)
// obj.propIsAMethod();
// obj.privilegeMethod();
// obj.publicMethodUsePrototype();
// globalFunc.classMethod();
 
 /*  //注意:为了清晰,一个函数名只写了它作为某种函数时的性质。
  5种function:
  (1)、对于window是私有函数。
    可使用的变量及函数:全局变量、window的全局变量(加this)、在全局范围内声明的function。
    可见范围:任意地方
  (2)、公有方法。
    可使用的变量及函数:全局变量、window的全局变量(加this)、在全局范围内声明的function、调用它的对象this能取的变量和方法。
        (特别说明:不能访问私有变量和私有函数,不然要特权函数做什么^_^)
    可见范围:以obj.publicMethod();引用。
  (3)、对象的属性是方法。
    可使用的变量及函数:全局变量、window的全局变量(加this)、在全局范围内声明的function、调用它的对象this能取的变量和方法。
    可见范围:以obj.propIsAMethod();引用。
  (4)、构造函数。
    可使用的变量及函数:全局变量、window的全局变量(加this)、在全局范围内声明的function、调用它的对象this的object。
    可见范围:以var obj = new globalFunc();使用。
  (5)、私有方法(嵌套函数)。
    可使用的变量及函数:全局变量、window的全局变量(加this)、外部函数的私有变量、其它私有方法。
        (特别说明:不能访问公有变量和公有函数)
    可见范围:以外部函数内使用、特权函数可以访问。
  (6)、特权方法。
    可使用的变量及函数:通吃(公有方法+私有方法的范围)。全部可以访问。
    可见范围:以obj.privilegeMethod();引用。
  (7)、公有方法(通过prototype获得)。globalFunc.prototype.publicMethodUsePrototype = function() { }
    可使用的变量及函数:全局变量、window的全局变量(加this)、在全局范围内声明的function、调用它的对象this能取的变量和方法。
        (特别说明:不能访问私有变量和私有函数,不然要特权函数做什么^_^)
    可见范围:以obj.publicMethodUsePrototype();引用。
  (8)、类方法。
    可使用的变量及函数:全局变量、window的全局变量(加this)、在全局范围内声明的function。(同"对于window是私有函数")
    可见范围:以globalFunc.classMethod();引用。(只能以Class调用,不能以obj调用)
 */
 //私有方法私有变量可以相互访问。
 
 /*Wherever an anonymous function is declared inline with
 foo = function(p1,p2){ some code }
 the new Function() constructor is NOT equivalent, e.g.
 foo = new Function('p1','p2','code');
 since the latter runs in the global scope--instead of inheriting the scope of the constructor function--
 thus preventing it from accessing the private variables. */
 
 /*Private functions and privileged methods, like private variables and public properties,
 are instantiated with each new object created.*/
 
 /*So what does "ball0=new Ball()" do?  The "new" keyword creates a new object (named ball0) of type Object. 
   It then executes: Ball(), passing the reference to ball0 as the calling object. 
   Below, you will see the message: "creating new Ball" if indeed Ball() is executed.
  function Ball(message)
  {
    alert(message);
  }
  var ball0=new Ball("creating new Ball");  // creates object & prints the message
  ball0.name="ball-0";                      // ball0 now has a "name" property
  alert(ball0.name);                        // prints "ball-0"
  
  We may consider the red portion of the above code as a shortcut for doing the same thing as below:
  function Ball(message)
  {
    alert(message);
  }
  var ball0=new Object();
  ball0.construct=Ball;
  ball0.construct("creating new ball");  // executes ball0.Ball("creating..");
  ball0.name="ball-0";                     
  alert(ball0.name);         
 */
</script>

 

收集了一些function的类型,及它们的使用。希望对大家有所帮助,也希望大家帮忙查漏补缺,谢谢!

关于一些参考资料,会在下次空闲时加入。

 

 

 

毫米波雷达系统工作在毫米波频段,通过发射与接收电磁波并解析回波信号,实现对目标的探测、定位及识别。相较于传统雷达技术,该系统在测量精度、环境抗干扰性及气象适应性方面表现更为优越。本研究聚焦于德州仪器开发的IWR1843DCA1000型号毫米波雷达,系统探究其在多模态数据采集与多样化应用场景中的技术路径及创新实践。 IWR1843DCA1000传感器为一款高度集成的毫米波探测设备,采用调频连续波技术与多输入多输出架构,可执行高精度目标测量及成像任务。研究过程中,团队对该设备的性能参数进行了全面评估,并在下列领域展开应用探索: 在数据采集环节,借助专用硬件接口连接雷达传感器,实现原始信号的高效捕获。团队研发了配套的数据采集程序,能够实时记录传感器输出并执行初步信号处理,为后续分析构建数据基础。 通过构建FMCW-MIMO雷达仿真平台,完整复现了雷达波的发射接收流程及信号处理机制。该仿真系统能够模拟目标运动状态及环境变量对雷达波形的影响,为系统性能验证与参数优化提供数字化实验环境。 基于高分辨率测距能力,结合目标检测与轨迹追踪算法,实现对人体运动模式的精确重构。通过点云数据的解析,为行为模式分析与场景理解提供多维信息支撑。 利用雷达回波信号的深度解析,生成表征人体空间分布的热力图像。该技术为复杂环境下的定位问题提供了直观可视化解决方案。 针对精细手势动作的识别需求,应用机器学习方法对雷达生成的点云序列进行特征提取与模式分类,建立手势动作的自动识别体系。 通过分析人体表面对毫米波信号的反射特性,开发非接触式生理参数监测方法,可有效检测呼吸韵律与心脏搏动频率等生命体征指标,为健康监护领域提供新的技术途径。 本研究的顺利开展,不仅深化了IWR1843DCA1000雷达系统的应用研究层次,同时为毫米波技术在多元领域的拓展应用建立了技术支撑体系。通过实证分析与仿真验证相结合的研究模式,该项目为行业应用提供了可靠的技术参照与实践范例,有力推动了毫米波雷达技术的产业化进程。 资源来源于网络分享,仅用于学习交流使用,请勿用于商业,如有侵权请联系我删除!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值