if 语句包含分号

发布于 2024-12-06 11:19:46 字数 127 浏览 1 评论 0原文

我最近看到了这个 if 语句:

if(hWnd > 0)
{
 ....
}

有人能为我解释这个语法吗?

我以前从未在 if 语句中见过分号。

I've seen this if statement recently:

if(hWnd > 0)
{
 ....
}

Can someone explain this syntax for me?

I've never seen a semi-colon in an if statement before.

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

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

发布评论

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

评论(2

尽揽少女心 2024-12-13 11:19:46

它是 HTML 编码的,并且该代码在解码之前无法正确编译。应该是这样的:

if(hWnd > 0)
{
    ....
}

>HTML(或 XML)实体 表示 >。您可能还会发现代码包含其他实体,例如 & 而不是 &

It's HTML encoded and that code won't compile correctly until it is decoded. It should be this:

if(hWnd > 0)
{
    ....
}

The > is the HTML (or XML) entity for >. You might also find that the code contains other entities such as & instead of &.

青衫负雪 2024-12-13 11:19:46

它看起来像 if 语句的 HTML 编码版本。

> 将转换为大于符号:>

It looks like an HTML-Encoded version of an if statement.

The > would be converted to a greater-than symbol: >

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