c++ if (DEBUG) ... 预期在 '==' 之前的主表达式代币

发布于 2024-11-06 00:48:56 字数 274 浏览 0 评论 0原文

  #define DEBUG 1

  void senddata() {
  ...
  if (DEBUG==1) {
  cout << row->Printable () << endl;
  };

  ....
  }

getrow.cc:在函数“void senddata()”中: getrow.cc:277: 错误:预期的主表达式在 '==' 标记之前

IMO 该代码在几天前运行... - 知道这里出了什么问题吗?

  #define DEBUG 1

  void senddata() {
  ...
  if (DEBUG==1) {
  cout << row->Printable () << endl;
  };

  ....
  }

getrow.cc: In function 'void senddata()':
getrow.cc:277: error: expected primary-expression before '==' token

IMO that code was running some days ago... - Any idea what's wrong here?

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

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

发布评论

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

评论(1

输什么也不输骨气 2024-11-13 00:48:56

我根本不会那样做。这似乎更合适:

#ifdef DEBUG
    cout << row->Printable() << endl;
#endif

如果您做错了什么(例如忘记在某处分号),这也会生成更好的警告和错误。

I wouldn't do it like that at all. This seems more appropriate:

#ifdef DEBUG
    cout << row->Printable() << endl;
#endif

This also generates better warnings and errors if you are doing something wrong (like forgot a semicolon somewhere).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文