if 语句包含分号
我最近看到了这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是 HTML 编码的,并且该代码在解码之前无法正确编译。应该是这样的:
>
是 HTML(或 XML)实体 表示>
。您可能还会发现代码包含其他实体,例如&
而不是&
。It's HTML encoded and that code won't compile correctly until it is decoded. It should be this:
The
>
is the HTML (or XML) entity for>
. You might also find that the code contains other entities such as&
instead of&
.它看起来像 if 语句的 HTML 编码版本。
>
将转换为大于符号:>
It looks like an HTML-Encoded version of an if statement.
The
>
would be converted to a greater-than symbol:>