如何通过变量指定位串的类型

发布于 2024-08-17 23:51:56 字数 319 浏览 6 评论 0原文

Erlang 不允许我这样做:

Type = bitstring. 
<<FirstPart:8/Type, Rest/bitstring>> = some_binary.

尽管它允许我这样做:

Size = 8. 
<<FirstPart:Size/bitstring, Rest/bitstring>> = some_binary.

因此,在位字符串表达式中,虽然我可以通过变量传递大小,但它不允许我通过变量传递类型。有什么解决办法吗?

Erlang doesn't let me do:

Type = bitstring. 
<<FirstPart:8/Type, Rest/bitstring>> = some_binary.

although it lets me do:

Size = 8. 
<<FirstPart:Size/bitstring, Rest/bitstring>> = some_binary.

So, in bit string expressions, while I can pass the size through a variable, It doesnt let me pass the type through a variable. Is there any solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蛮可爱 2024-08-24 23:51:56

您可以使用 case 语句作为解决方法:

{FirstPart, Rest} = case Type of
                        {'bitstring', Len} ->
                            <<A:Len/bitstring, B/bitstring>> = Bin,
                            {A,B};
                        'integer' ->
                            <<A/integer, B/bitstring>> = Bin,
                            {A,B};
                        ...

You can use a case statement as a workaround:

{FirstPart, Rest} = case Type of
                        {'bitstring', Len} ->
                            <<A:Len/bitstring, B/bitstring>> = Bin,
                            {A,B};
                        'integer' ->
                            <<A/integer, B/bitstring>> = Bin,
                            {A,B};
                        ...
浅笑依然 2024-08-24 23:51:56

我在这里没有看到任何特殊之处,使得条件处理不同“类型”的编码变得不方便。

case StringType of
  byte_len ->
    <<Len:8, String:Len/binary>> = SomeBinary,
    String;
  word_len ->
    <<Len:32, String:Len/binary>> = SomeBinary,
    String;
  etc -> ...
end

I do not see anything extraordinary here that makes a conditional inconvenient for handling the different "types" of encoding.

case StringType of
  byte_len ->
    <<Len:8, String:Len/binary>> = SomeBinary,
    String;
  word_len ->
    <<Len:32, String:Len/binary>> = SomeBinary,
    String;
  etc -> ...
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文