当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir Module.get_attribute用法及代码示例


Elixir语言中 Module.get_attribute 相关用法介绍如下。

用法:

get_attribute(module, key, default \\ nil)
@spec get_attribute(module(), atom(), term()) :: term()

从模块中获取给定的属性。

如果属性用 accumulate Module.register_attribute/3 标记,则始终返回一个列表。如果属性没有用accumulate 标记并且没有设置为任何值,则返回nil

@ 宏编译为对该函数的调用。例如,下面的代码:

@foo

扩展为类似于:

Module.get_attribute(__MODULE__, :foo)

该函数只能在尚未编译的模块上使用。使用 Module.__info__/1 回调获取所有持久属性,或使用 Code.fetch_docs/1 检索已编译模块中的所有文档相关属性。

例子

defmodule Foo do
  Module.put_attribute(__MODULE__, :value, 1)
  Module.get_attribute(__MODULE__, :value) #=> 1

  Module.get_attribute(__MODULE__, :value, :default) #=> 1
  Module.get_attribute(__MODULE__, :not_found, :default) #=> :default

  Module.register_attribute(__MODULE__, :value, accumulate: true)
  Module.put_attribute(__MODULE__, :value, 1)
  Module.get_attribute(__MODULE__, :value) #=> [1]
end

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Module.get_attribute(module, key, default \\ nil)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。