我正在阅读的代码中的奇怪括号

发布于 2024-10-17 17:29:27 字数 103 浏览 2 评论 0原文

如果我在 C++ 代码中间有括号中的内容,这意味着什么:

[..]

这些括号是什么意思? 是cli吗?

What does it mean if I have in the middle of c++ code, things in brackets likt:

[..]

What do these brackets mean?
is it cli?

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

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

发布评论

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

评论(2

如何视而不见 2024-10-24 17:29:27

这可能在您的代码编辑器中,目的是让您看到更多“上下文”代码。因此,如果您关闭一段代码,您会看到下面的更多内容。

This is probably in your code editor and the purpose is to allow you to see more "context" code. Thus if you close a block of code you see more of what follows underneath.

三岁铭 2024-10-24 17:29:27

提前抱歉 - 不确定这是否太简单。

也许这就是下标运算符。

其主要用途是访问特定的数组元素:

const int array[2] = {0,1};
const int value(array[0]); // access element 0 of `array`

sorry in advance - not sure if this is too simple.

perhaps this is the subscript operator.

the primary use for this is to access a specific array element:

const int array[2] = {0,1};
const int value(array[0]); // access element 0 of `array`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文