2

在一些代码中,我看到了这样的东西

{ok, Req2} = cowboy_req:reply(200, [], <<"Hello World!">>, Req),

我不知道那些 <<>> 是什么意思.. 谢谢。

4

2 回答 2

7

在 Erlang 中,它们指的是binaries/bitstrings,请参阅Bit Strings and BinariesBit Syntax Expressions

于 2013-03-31T16:15:12.553 回答
1

这是用于创建二进制序列。请参阅相关文档

于 2013-03-31T16:14:02.707 回答