ada语言的疑问

发布于 2024-08-28 14:12:36 字数 323 浏览 10 评论 0原文

大家好,

我是 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 技术交流群。

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

发布评论

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

评论(1

鱼窥荷 2024-09-04 14:12:36

类型的 'first'last 属性指示该类型所覆盖范围的第一个和最后一个。在本例中,C1character'val(0)C2character'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 is character'val(0) and C2 is character'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.

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