zoukankan      html  css  js  c++  java
  • java练习代码

    Java代码  收藏代码
    1. function add(a,b)  
    2. {  
    3.     alert(a+b);  
    4. }  
    5. function sub(a,b)  
    6. {  
    7.     alert(a-b);  
    8. }  
    9.   
    10. add.call(sub,3,1);   

     这个例子中的意思就是用 add 来替换 sub,add.call(sub,3,1) == add(3,1) ,所以运行结果为:alert(4); // 注意:js 中的函数其实是对象,函数名是对 Function 对象的引用。

    1. function Animal(){    
    2.     this.name = "Animal";    
    3.     this.showName = function(){    
    4.         alert(this.name);    
    5.     }    
    6. }    
    7.   
    8. function Cat(){    
    9.     this.name = "Cat";    
    10. }    
    11.    
    12. var animal = new Animal();    
    13. var cat = new Cat();    
    14.     
    15. //通过call或apply方法,将原本属于Animal对象的showName()方法交给对象cat来使用了。    
    16. //输入结果为"Cat"    
    17. animal.showName.call(cat,",");    
    18. //animal.showName.apply(cat,[]);  

    http://uule.iteye.com/blog/1158829

  • 相关阅读:
    apply()和call()的区别
    强制类型转换
    浮动理解
    清除浮动的方式
    五大主流浏览器及四大内核
    CSS引入方式
    js构建类的方法
    web前端与后端的理解区分
    Java的API及Object
    面向对象之this关键字
  • 原文地址:https://www.cnblogs.com/geekjsp/p/6734137.html
Copyright © 2011-2022 走看看