此语法功能的正式名称是什么?

发布于 2024-09-11 07:10:30 字数 257 浏览 9 评论 0原文

每行末尾的角色名字是什么?

Dim _int As Integer = 1I
Dim _short As Short = 1S
Dim _long As Long = 1L
Dim _single As Single = 1.0F
Dim _double As Decimal = 1D

我一直将这些称为“类型说明符”。我认为这是不正确的,因为我无法找到使用该术语的官方文档。我想知道其他可用的术语,但在我的搜索中找不到合适的术语。

What is the name of the character at the end of each of these lines?

Dim _int As Integer = 1I
Dim _short As Short = 1S
Dim _long As Long = 1L
Dim _single As Single = 1.0F
Dim _double As Decimal = 1D

I've always called these "type specifiers". I assume that's incorrect as I'm unable to find the official documentation using this term. I would like to know what others are available but can't find the right term to use in my search.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

流年已逝 2024-09-18 07:10:32

它称为类型后缀。

It's called a type suffix.

扛起拖把扫天下 2024-09-18 07:10:32

根据 VB.NET 中的文档,它们被称为“文字类型字符” 。请参阅“强制文字类型”部分。

According to the documentation in VB.NET they are called "literal type characters". See the section on "forced literal types".

夜空下最亮的亮点 2024-09-18 07:10:32

根据MSDNC# 称为:类型后缀

According to MSDN in C# are called: Type suffix

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