4

我正在浏览用于构建 Pebble 表盘的模板(在 cloudpebble.net 上)并遇到了以下代码:

void handle_minute_tick(AppContextRef ctx, PebbleTickEvent *t) {
  (void)t; // NOOP?
  (void)ctx; // NOOP?

  display_time(t->tick_time);
}


void handle_init(AppContextRef ctx) {
  (void)ctx; // NOOP?

  window_init(&window, "Big Time watch");
  window_stack_push(&window, true);
  window_set_background_color(&window, GColorBlack);

  resource_init_current_app(&APP_RESOURCES);

  // Avoids a blank screen on watch start.
  PblTm tick_time;

  get_time(&tick_time);
  display_time(&tick_time);
}


void handle_deinit(AppContextRef ctx) {
  (void)ctx; // NOOP?

  for (int i = 0; i < TOTAL_IMAGE_SLOTS; i++) {
    unload_digit_image_from_slot(i);
  }

}

我指出的线路有什么用途?

4

1 回答 1

10

这些行的唯一目的是使编译器警告静音,例如-Wunused-parameter. 请注意,这些变量不会在函数体的任何地方使用。将它们强制转换为 void 本质上是告诉编译器这是故意的。

于 2013-04-30T01:19:06.047 回答