“(.1..10.)” 是什么意思?在数组声明中意味着什么?
Nick Hodges 在一篇文章中提到,以下内容仍然可以编译:
var
WeirdLookingArray: array(.1..10.) of string;
What is the meaning of "."在开始和结束?
Nick Hodges mentioned in an article that the following still compiles:
var
WeirdLookingArray: array(.1..10.) of string;
What is the meaning of "." in beginning and end?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(.
和.)
分别是[
和]
的另一种书写方式。您还可以编写
(*
和*)
而不是{
和}
。(.
and.)
are alternative ways of writing[
and]
, respectively.You can also write
(*
and*)
instead of{
and}
.这些称为有向图。 文档中也对此进行了描述。
These are called digraphs. Has been described in documentation too.