如何在不参考Elixir 1.0.3中的模块的情况下引用函数中的模块变量?在其父范围内?

时间:2015-03-03 20:38:29

标签: import module scope elixir

我想在Elixir 1.0.3中创建一个函数,引用其“父”范围内的变量。在这种情况下,其父作用域是一个模块。

这里的代码与我在上一个问题中使用的代码相同:

defmodule Rec do
  def msgurr(text, n) when n <= 1 do
    IO.puts text
  end

  def msgurr(text, n) do
    IO.puts text
    msgurr(text, n - 1)
  end
end

如果我将其更改为以下内容:

defmodule Rec do
  counter = "done!"
  def msgurr(text, n) when n <= 1 do
    IO.puts text
    IO.puts Rec.counter
  end

  def msgurr(text, n) do
    IO.puts text
    msgurr(text, n - 1)
  end
end

它编译得很好,但如果我尝试使用msgurr函数,我会收到以下错误:

** (UndefinedFunctionError) undefined function: Rec.counter/0
    Rec.counter()
    recursion_and_import_test.exs:5: Rec.msgurr/2

我也尝试了以下内容:

defmodule Rec do
  counter = "done!"
  def msgurr(text, n) when n <= 1 do
    import Rec
    IO.puts text
    IO.puts Rec.counter
  end

  def msgurr(text, n) do
    IO.puts text
    msgurr(text, n - 1)
  end
end

我在这里收到编译时警告:     ➜ubuntuelixirc recursiontest.exs     recursion_and_import_test.exs:1:警告:重新定义模块Rec     recursion_and_import_test.exs:2:警告:变量计数器未使用     recursion_and_import_test.exs:4:警告:未使用导入Rec

当我尝试使用msgurr函数时:

➜ubuntuiex Erlang / OTP 17 [erts-6.3] [source] [64-bit] [smp:8:8] [async-threads:10] [kernel-poll:false]

Interactive Elixir (1.0.3) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> import Rec
nil
iex(2)> Rec.msgurr("blah", 3)
blah
blah
blah
** (UndefinedFunctionError) undefined function: Rec.counter/0
    Rec.counter()
    recursiontest.exs:6: Rec.msgurr/2

我似乎无法将自己的变量从模块导入到该模块内的函数中。

我已经查看了导入文档,但我似乎对如何做这类事情没有多大意义。我应该查看Erlang文档吗?

1 个答案:

答案 0 :(得分:4)

您将模块与对象混淆。

Rec.counter 

始终参考Rec Module内部的功能。这就是错误消息告诉你的,他们无法找到该功能。模块不能像你想象的那样有变量。

模块可以有属性。虽然有可能想要你想要的软糖 如果你想使用Rec.counter引用它,你应该创建一个返回常量的函数。

def counter do
  "done!"
end

关于模块属性here还有更多内容,但是如果你想在elixir中思考,你需要开始思考“函数而不是变量”。