當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir Module.has_attribute?用法及代碼示例


Elixir語言中 Module.has_attribute? 相關用法介紹如下。

用法:

has_attribute?(module, key)
(從 1.10.0 開始)
@spec has_attribute?(module(), atom()) :: boolean()

檢查給定屬性是否已定義。

如果屬性已使用 register_attribute/3 注冊或分配了值,則該屬性被定義。如果使用 delete_attribute/2 刪除了某個屬性,則不再認為該屬性已定義。

該函數隻能在尚未編譯的模塊上使用。

例子

defmodule MyModule do
  @value 1
  Module.register_attribute(__MODULE__, :other_value)
  Module.put_attribute(__MODULE__, :another_value, 1)

  Module.has_attribute?(__MODULE__, :value) #=> true
  Module.has_attribute?(__MODULE__, :other_value) #=> true
  Module.has_attribute?(__MODULE__, :another_value) #=> true

  Module.has_attribute?(__MODULE__, :undefined) #=> false

  Module.delete_attribute(__MODULE__, :value)
  Module.has_attribute?(__MODULE__, :value) #=> false
end

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Module.has_attribute?(module, key)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。