我正在阅读的代码中的奇怪括号
如果我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能在您的代码编辑器中,目的是让您看到更多“上下文”代码。因此,如果您关闭一段代码,您会看到下面的更多内容。
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.
提前抱歉 - 不确定这是否太简单。
也许这就是下标运算符。
其主要用途是访问特定的数组元素:
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: