`
talin2010
  • 浏览: 503217 次
  • 性别: Icon_minigender_1
  • 来自: 河北
社区版块
存档分类
最新评论

15.3 The empty statement

阅读更多
An empty-statement does nothing.
empty-statement:
;
An empty statement is used when there are no operations to perform in a
context where a statement is
required.
Execution of an empty statement simply transfers control to the end point
of the statement. Thus, the end
point of an empty statement is reachable if the empty statement is
reachable.
[Example: An empty statement can be used when writing a while statement
with a null body:
bool ProcessMessage() {?}
C# LANGUAGE SPECIFICATION
180
void ProcessMessages() {
while (ProcessMessage())
;
}
Also, an empty statement can be used to declare a label just before the
closing ?}? of a block:
void F() {
?
if (done) goto exit;
?
exit: ;
}
end example]
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics