全部大写字母的变量的含义是什么?

发布于 2024-12-14 05:48:00 字数 120 浏览 0 评论 0原文

我正在做的作业有两个变量,书和杂志,全部都是大写字母,我不知道它的目的是什么。

有人知道吗?

Visio 类图中的图标看起来像一个矩形,上面有一个等号和一个声明其为私有的锁。

问候。

I am doing homework that has two variables, BOOK and MAGAZINE, in all capital letters, and I can not figure out what could be the purpose of it.

Anyone have a clue?

The icon in Visio Class Diagram looks like a rectangle with an equal sign on it and a lock declaring it as private.

Regards.

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

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

发布评论

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

评论(2

清旖 2024-12-21 05:48:00

它们是私有常量。您可以通过他们名字旁边的图标来判断。看看这个例子中的常量 TEST...

Screen shot of private const in C# with intelisense

编辑:
全部大写只是按照惯例,但通常用于表示常量。

They are private constants. You can tell by the icon next to their name. Take a look at the constant TEST in this example...

Screen shot of private const in C# with intelisense

EDIT:
The all caps is merely by convention, but is usually used to represent constants.

木槿暧夏七纪年 2024-12-21 05:48:00

任何语言中全部大写字母的变量通常指的是常量,这意味着值永远不会改变。

在这种情况下,它们可以引用枚举类型,这是一种特殊的常量,基本上只是其本身的符号。

Variables in all capital letters in any language generally refer to constants, meaning the value should never change.

In this case, they could refer to an enumerated type, which is a special sort of constant basically is just a symbol for itself.

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