3

我正在使用ffityed_dataDart 库,并在这行代码中不断遇到错误,

 Uint8 START_OF_HEADER = 1 as Uint8;

我的错误:

类型“int”不是类型转换中“Uint8”类型的子类型

我在这里做错了什么?另一个奇怪的是,我可以使用这些库编写这行代码,并且我的 IDE 将编译并且不会抛出错误,直到你使用那行代码。我正在使用 Intellij 版本 2019.2.4

4

1 回答 1

5

您正在尝试Uint8在 Dart 中创建 a 的实例,但这是不可能的 - 该类型只是一个标记。

/// [Uint8] is not constructible in the Dart code and serves purely as marker in
/// type signatures.

您只需在 typedef 中使用这些标记,例如,描述一个采用两个有符号 32 位整数并返回有符号 32 位整数的 C 函数:

typedef native_sum_func = Int32 Function(Int32 a, Int32 b);

这将与等效的类似 Dart 的 typedef 配对

typedef NativeSum = int Function(int a, int b);

Dart ffi 负责将Dart int 转换为 32 位 C int,a并将b返回值转换回 Dart int。

请注意,您可以创建指向这些 C 类型的指针,例如Pointer<Uint8>使用allocate方法 from package:ffi

于 2019-11-06T20:59:07.513 回答