ada语言的疑问
大家好,
我是 ada 语言的初学者。我有一段简短的代码。有人可以告诉我这是什么意思吗?
type Myarr_Type is array (Character) of Character;
Myarr : Myarr_Type;
C1 : character := character'first;
C2 : character := character'last;
我的问题是1)根据上面的代码,C1和C2包含什么?
如果这真的很愚蠢,请原谅。我没有 ada 编译器来检查这个变量的内容
问候 麦迪
HI all,
I am a beginner in the ada language.I have an short piece of code.Can anyone please tel me what does it mean?
type Myarr_Type is array (Character) of Character;
Myarr : Myarr_Type;
C1 : character := character'first;
C2 : character := character'last;
My question is 1)What does C1 and C2 contain according to the above code?
Please do excuse if this is really silly.I dont have an ada compiler to check the contents of this variable
Regards
Maddy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类型的
'first
和'last
属性指示该类型所覆盖范围的第一个和最后一个值。在本例中,C1
为character'val(0)
,C2
为character'val(255)
(字符
是8位字符类型< /a>)。您可以在附录 K 中阅读有关这些“语言定义属性”的更多信息Ada 95 参考手册。
The
'first
and'last
attributes of a type indicate the first and last values of the range covered by the type. In this case,C1
ischaracter'val(0)
andC2
ischaracter'val(255)
(character
is an 8-bit character type).You can read more about these "Language Defined Attributes" in Annex K of the Ada 95 Reference Manual.