`
qqkk
  • 浏览: 2442 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

数据函数(Functions as Data)

阅读更多
  <script>
// We define some simple functions here
function add(x,y) { return x + y; }
function subtract(x,y) { return x - y; }
function multiply(x,y) { return x * y; }
function divide(x,y) { return x / y; }

// Here's a function that takes one of the above functions
// as an argument and invokes it on two operands
function operate(operator, operand1, operand2)
{
    return operator(operand1, operand2);
}

// We could invoke this function like this to compute the value (2+3) + (4*5):
var i = operate(add, operate(add, 2, 3), operate(multiply, 4, 5));

// For the sake of the example, we implement the simple functions again, this time
// using function literals within an object literal;
var operators = {
    add:      function(x,y) { return x+y; },
    subtract: function(x,y) { return x-y; },
    multiply: function(x,y) { return x*y; },
    divide:   function(x,y) { return x/y; },
    pow:      Math.pow  // Works for predefined functions too
};

// This function takes the name of an operator, looks up that operator
// in the object, and then invokes it on the supplied operands. Note
// the syntax used to invoke the operator function.
function operate2(op_name, operand1, operand2)
{
    if (typeof operators[op_name] == "function")
        return operators[op_name](operand1, operand2);
    else throw "unknown operator";
}

// We could invoke this function as follows to compute
// the value ("hello" + " " + "world"):
var j = operate2("add", "hello", operate2("add", " ", "world"))
// Using the predefined Math.pow() function:
var k = operate2("pow", 10, 2)

alert(k);

</script>


OReilly.JavaScript.The.Definitive.Guide.5th.Edition.Aug.2006.chm:
能过函数operate2的调用函数列表operators,调用方式为operators[op_name](operand1, operand2);这样进行嵌入(invoke)函数
分享到:
评论

相关推荐

    ABAP字符串SQL Functions语法总结

    ABAP是一种专为SAP系统设计的编程语言,而在ABAP中处理字符串时,SQL Functions提供了许多方便的方法。本文将对ABAP SQL Functions for Strings进行详细的语法总结。 首先,我们来讨论一下如何在ABAP SQL中跨Client...

    hive常用函数参数手册

    在大数据处理领域,Hive作为一个广泛使用的数据仓库工具,提供了丰富的内置函数来支持数据的处理与分析。本文档旨在介绍Hive中的常用函数及其用法,帮助用户更好地理解和应用这些函数。需要注意的是,由于Hive的不同版本...

    DataCamp - Data Scientist with Python Track 课程笔记

    2. **函数(functions)**:学习如何编写和调用函数,以及Python内置的一些函数,如`max()`和`round()`。同时,理解`help()`函数用于查看函数的帮助文档。 3. **方法(methods)**:学习对象的方法,例如列表的`index()...

    从零基础开始用Python处理Excel数据pdf

    grouped_data = data.groupby('column_name').agg(functions) # 对列进行分组并应用聚合函数 ``` 此外,我们还可以使用pandas进行数据合并和重塑,例如: ```python left = pd.DataFrame({'key': ['K0', 'K1', 'K2...

    获取最大分区UDF函数.doc

    为了验证这一点,可以通过比较使用标准Hive函数与使用自定义UDF函数在查询相同数据时的时间消耗来进行评估。通常情况下,自定义UDF函数由于其针对性的设计和优化,能够更高效地完成特定任务。 总结来说,无论是临时...

    MySQL基础-点属性函数.pdf

    使用ST_AsText()函数可以查看修改后的点对象的文本表示形式。 MySQL提供了一系列强大的空间函数来处理地理空间数据中的点对象,允许用户获取或修改点的坐标、经度和纬度属性。在使用这些函数时,需要对参数的合法性...

    hive常用函数参考手册.docx

    4. **特殊函数**:包括窗口函数(window functions)、分析函数(analytic functions)等。 #### 二、HIVE CLI命令 Hive提供了CLI(Command Line Interface)来执行SQL语句和管理数据库。以下是一些常用的CLI命令: 1....

    R语言基本数据结构PPT课件.pptx

    R提供了多种转换函数,如`as.character()`, `as.numeric()`, `as.logical()`, `as.factor()`等,用于将对象转换为不同的数据类型。例如,`as.factor()`将变量转换为因子,`as.numeric()`则将字符型或因子转换为数值...

    学习教程大全:ArcPy函数:2022年.pdf

    General Data Functions * CreateObject:创建对象 * CreateRandomValueGenerator:创建随机值生成器 * CreateScratchName:创建临时名称 * CreateUniqueName:创建唯一名称 * Describe:描述数据 * Exists:检查...

    EOF.zip_EOF Python_EOF方法_eof_eof分解python_python实现eof

    但在本场景中,"EOF"是“经验正交函数”(Empirical Orthogonal Functions)的缩写,这是一个在气象学、海洋学和其他地球科学领域广泛使用的统计分析方法,用于降维处理和理解复杂数据集的结构。本文将深入探讨EOF方法...

    查看sqlserver表分区数据分布

    JOIN sys.partition_functions pf ON ps.function_id = pf.function_id LEFT JOIN sys.Partition_Range_values v ON pf.function_id = v.function_id AND v.boundary_id = p.partition_number - pf.boundary_value_...

    详解Javascript ES6中的箭头函数(Arrow Functions)

    JavaScript ES6引入了一种新的函数定义方式:箭头函数(Arrow Functions),它使用"箭头"(=&gt;)来表示函数的定义。箭头函数简化了函数的书写,并且改变了`this`的指向规则,这对于理解和编写JavaScript代码提供了...

    6步教你在STM32程序中添加 printf函数

    /* Private functions --------------------------------------------------------- */ void USART_Configuration(void); #ifdef __GNUC__ /* With GCC/RAISONANCE, small printf (option LD Linker-&gt;Libraries-&gt;...

    fewpjs-fns-as-first-class-data-array-o-functions-london-web-100719

    JavaScript函数作为头等数据:函数数组 学习目标 创建一个遍历函数ArrayJavaScript函数 介绍 由于JavaScript中的函数是“一流”对象,因此意味着可以将它们像JavaScript中的任何其他数据类型一样对待( Number , ...

    result_functions:读取csv数据

    标题中的"result_functions:读取csv数据"就是关于使用Python读取CSV数据的一个功能模块或脚本。 CSV文件是一种常见的数据存储格式,它以逗号分隔各个字段,适合存储表格数据。在Python中,我们通常使用Pandas库的`...

    fewpjs-fns-as-first-class-data-array-o-functions-online-web-sp-000

    JavaScript函数作为头等数据:函数数组学习目标创建一个遍历函数ArrayJavaScript函数介绍由于JavaScript中的函数是“一流”对象,因此意味着可以将它们像JavaScript中的任何其他数据类型一样对待( Number , String...

    学习教程大全:ArcPy函数:2023年.pdf

    8. **Describing data(描述数据)**: - `Describe`:获取数据集(如图层、要素类等)的详细信息。 9. **Geometry operations(几何操作)**: - `AsShape`:将对象转换为几何形状。 - `FromWKB` 和 `FromWKT`...

    eeglab合并行为数据 (2).pdf

    4. **保存合并结果**:合并完成后,记得保存新的数据集,这通常可以通过`File` -&gt; `Save dataset as...`来实现,确保新数据集的名称能反映其来源和合并后的状态。 ### 合并行为数据的注意事项 在EEGLAB中,行为...

Global site tag (gtag.js) - Google Analytics