erlang:apply/3
用参数调用模块的函数
用法:
apply(Module, Function, Args) -> term()
用参数 Args 调用模块 Module 的函数 Function
erlang:apply(math, sqrt, [4]).
erlang:apply(lists, reverse, [[a, b, c]]).
erlang:apply(erlang, atom_to_list, ['Erlang']).
用参数调用模块的函数
用法:
apply(Module, Function, Args) -> term()
用参数 Args 调用模块 Module 的函数 Function
erlang:apply(math, sqrt, [4]).
erlang:apply(lists, reverse, [[a, b, c]]).
erlang:apply(erlang, atom_to_list, ['Erlang']).