List.flatten返回意外值

时间:2016-07-19 12:10:09

标签: elixir

版本:1.2.2,错误:

  

List.flatten([a,[b]])预计会返回([a,b])。但是,这个   在某些情况下无法正常工作。例如,List.flatten([11,   [[12],13]])返回' \ v \ f \ r',当预期([11,12,13])时。甚至   List.flatten([10])返回' \ n'。

为什么会发生这种情况?如果有的话,解决方法是什么?

3 个答案:

答案 0 :(得分:3)

如果您的列表包含可以全部代表ASCII集中的可打印 UTF-8代码点的整数,则它将作为charlist输出到终端。

iex> [104,101,108,108,111]
'hello'

但它仍然是一个清单:

iex> 'hello' ++ ' there'
'hello there'

如果它包含任何不可打印的代码点,它将作为标准列表输出:

iex> 'hello' ++ [0]
[104, 101, 108, 108, 111, 0]

您可以使用?运算符查看字符的代码点:

iex> ?h
104

我们可以使用iex中的i帮助器获取有关该术语的信息:

iex> i 'hello'
Term
  'hello'
Data type
  List
Description
  This is a list of integers that is printed as a sequence of characters
  delimited by single quotes because all the integers in it represent valid
  ASCII characters. Conventionally, such lists of integers are referred to
  as "charlists" (more precisely, a charlist is a list of Unicode codepoints,
  and ASCII is a subset of Unicode).
Raw representation
  [104, 101, 108, 108, 111]
Reference modules
  List

为什么elixer这样做?二郎。

答案 1 :(得分:2)

实际上它与List.flatten无关,它可以正常工作。这只是将可打印字符打印为ASCII字符的问题。与许多编程语言相反,Elixir将查尔斯列表视为整数列表。

例如:

a = 'abc'
hd a # 97

考虑来自this turorial的最后一个例子。

还要记住字符串解释是一回事,但你仍然有整数列表。

hd [12, 13, 14] # 12

答案 2 :(得分:0)

正如greggreg解释的那样,你的最终名单 - [11,12,13] - 看起来像是' \ v \ f \ r'相反,是因为它包含所有可打印的acsii代码点。因此输出是一个charlist。

如果您需要从此列表中获取数字而不是字符,您可以执行以下操作:

iex> sample_list = [11,12,13] 
iex> [first | rest] = sample_list
iex> [second | rest] = rest
iex> [third | rest] = rest
iex> first
iex> 11
iex> second
iex> 12
iex> third
iex> 13

所以基本上,当你从列表中取出一个数字时,它会被转换为整数。现在因为它不是列表,所以它不能转换为charlist。