- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嵌套局部作用域中的这个 extern
声明是将全局 a
带回作用域的有效且已定义的方法吗?
int a = 1; // may be in another file
void main() {
int a = 2; // hides the global
{
cout << a << endl; // prints 2
cout << ::a << endl; // obviously 1
extern int a;
cout << a << endl; // also prints 1
}
}
最佳答案
这是 extern
的有效用法,尽管是一种晦涩难懂的用法。根据C++20标准([basic.link]/6):
The name of a function declared in block scope and the name of a variable declared by a block scope
extern
declaration have linkage. If such a declaration is attached to a named module, the program isill-formed. If there is a visible declaration of an entity with linkage, ignoring entities declared outside theinnermost enclosing namespace scope, such that the block scope declaration would be a (possibly ill-formed)redeclaration if the two declarations appeared in the same declarative region, the block scope declarationdeclares that same entity and receives the linkage of the previous declaration. If there is more than one suchmatching entity, the program is ill-formed. Otherwise, if no matching entity is found, the block scope entityreceives external linkage. If, within a translation unit, the same entity is declared with both internal andexternal linkage, the program is ill-formed.
在OP的示例中, block 作用域声明extern int a;
无法找到具有链接的匹配声明,因为本地声明int a = 2;
没有链接隐藏了具有外部链接的全局声明int a = 1;
。因此,extern int a;
默认为外部链接。另请参阅第 7 段:
When a block scope declaration of an entity with linkage is not found to refer to some other declaration,then that entity is a member of the innermost enclosing namespace. However such a declaration does notintroduce the member name in its namespace scope.
因此,extern int a;
将 a
声明为最近的封闭命名空间(即全局命名空间)的成员。这意味着它与之前声明的全局 a
是相同的实体,因为两者都通过链接在同一命名空间中声明了一个具有相同名称的变量。换句话说,它为您提供了一种引用 block 内的全局变量的方法。
extern
的这种用法是从 C 继承的,但即使在 C 中也很晦涩。通常应避免使用它,而应使用 ::a
。
关于c++ - 在局部作用域中使用 extern 取消全局变量的阴影是否有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69572326/
如何在 XNA 中用图元(线条)制作的矩形周围制作阴影效果?我目前正在制作我的矩形,方法是将图元放入我制作的批处理中,然后添加纹理作为它们的背景。这些矩形应该象征着“ window ”。 我希望它们也
我刚刚在引擎中安装了照明系统。在以下屏幕截图中,您可以看到一个亮起的指示灯(黄色方框): 考虑到在照亮场景的光线之上,它还实现了FOV,该FOV将遮挡视场之外的任何物体。这就是为什么阴影的左侧部分看起
我是不熟悉Gradle并尝试编译我的项目的新手,但是也“阴影化”(就像在maven中一样)本地jar文件。 我正在尝试使用gradle shadow插件,但是当我运行“shadowJar”时,它并没有
用 JavaScript 编写解析器,对于任何语言,显然都使用 Map 来存储名称到变量的映射。 大多数语言允许以某种方式或内部作用域中的另一个变量遮蔽外部作用域中的变量。实现这一点的理想数据结构是功
// Shadowing #include using namespace std; const int MNAME = 30; const int M = 13; class Pers
我想设置我的导航栏和状态栏,就像下面链接中图片中的示例一样。我怎么能这样做 see the example 最佳答案 您可以通过像这样设置样式属性来简单地做到这一点: se
我以为我理解阴影的概念。但是这段代码让我想知道: public class Counter { int count = 0; public void inc() { count++; } pu
尝试遵循概述的方法 here为我的 UINavigationController 添加阴影。但是,该方法似乎不起作用。 这是我使用的代码: - (void)viewDidLoad { [sup
如何给 UITableViewCell 上下两边添加阴影? 我试过这个: cell.layer.shadowOpacity = 0.75f; cell.layer.shadowRadius = 5.0
我有一个博客,我为它制作了自定义光标,但它们并不是我想要的样子。使用一些免费的光标编辑程序制作光标,它们看起来只有一种颜色,没有边框、黑色或阴影。即使以图片形式上传后,在线.png 文件看起来也没有阴
我能得到像这张附图那样的带阴影的饼图吗? 如果是,怎么办? 这是饼图的代码: 最佳答案 遗憾的是,Kendo UI 饼图不支持任何 3D 元素。您可以在 Telerik 论坛中阅读相关信息 he
我一直试图获得给定的 curl 阴影效果 here对于 box-shadow:inset 但没有得到任何东西。任何onw有任何线索我可以让它工作吗? 一直试图让它在这个 上工作jsfiddle 将其更
我正在构建一个类似商店的东西,所以我有产品,侧面有圆形按钮,当我点击它们时,它会改变产品的颜色。一切都很完美,但我希望当我单击按钮时,按钮保持高亮状态。代码: CSS: #but1 { posi
我想创建一个底部边框下方有框显示的 H2 这是我的“基本”代码: My H2 #toto{ box-shadow: 0 4px 2px -2px gray; } 但我想
我有一个包含卡片列表的模板: --> {{event.eventTitle}} {{event.eve
CSS 阴影有问题。我不知道如何摆脱这里的顶部阴影:http://i.imgur.com/5FX62Fx.png 我得到的: box-shadow: 0 -3px 4px -6px #777, 0 3
在我的应用程序中,我想保留状态栏但使其背景与主屏幕相同。 所以我创建了一个自定义主题来设置应用程序背景: @drawable/background_shelf true
滚动 ListView 时如何去除阴影。 我在列表的顶部和底部出现了阴影。 最佳答案 关于android ListView 阴影,我们在Stack Overflow上找到一个类似的问题: https
我想在我的 Swift 4 中使用 MaterialComponents 为我的 View 添加阴影,但我不明白如何使用阴影电梯。我创建了一个名为 ShadowedView 的类,类似于 docume
给定以下 CAShapeLayer 是否可以在提示处添加如下图所示的阴影? 我正在使用 UIBezierPath 来绘制条形图。 - (CAShapeLayer *)gaugeCircleLayer
我是一名优秀的程序员,十分优秀!