Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用nesCfor实现一个模块TinyOS。我的模块使用接口 Timer<> 所以我必须实现接口 Timer 触发的事件,有可能在此实现中返回一个值,或者事件必须始终为 void?
nesC
TinyOS
事件的返回类型Timer.fired定义为void并且不能更改。即使类型是非 void,返回的值也会传递给发出事件信号的组件,该组件是实现Timer接口的某些系统组件。
Timer.fired
void
Timer
为了获得有关如何解决您的问题的一些提示,请提供更多详细信息,说明您希望从fired事件中返回值的目的,即预期谁来获取和处理返回值。
fired