- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在P1881提案中,提出了 C++ 代码的历元(在模块级别)的概念。这样的功能可以允许在模块级别自定义 C++ 语法和 C++ 行为,而不必破坏向后兼容性。 More elaborate motivation is given in the proposal .
版本 1:没有 epoch,一切都可以正常编译
module ParticleMovement;
export void move(Particle&, float x, float y);
void moveExample()
{
Particle p{};
move(p, 3.42, 2.49); // OK
}
版本 2:epoch 2023
(假设禁用其中的隐式转换),代码格式错误:
epoch 2023; // Module-level switch
module ParticleMovement;
export void move(Particle&, float x, float y);
void moveExample()
{
Particle p{};
move(p, 3.42, 2.49); // Compilation error
move(p, 3.42f, 2.49f); // OK, no implicit conversions
}
这看起来绝对是一个有趣的提议,并且与简单地指定编译开关 -std=c++XXX
有很大不同。
不过,我想知道:
#pragma
无缝实现,提供编译器支持,或者会引入严重的技术困难(从实现或使用的角度来看)基于提案?比如说,沿线的东西:
#pragma epoch 2023;
export void move(Particle&, float x, float y);
void moveExample()
{
Particle p{};
move(p, 3.42, 2.49); // Compilation error
move(p, 3.42f, 2.49f); // OK, no implicit conversions
}
我已阅读 the proposed mechanism其目标是基于模块的实现;但是,我不明白为什么它必须是模块。
也相关:a lightning talk at CppCon 2019 of Vittorio Romeo, the author of P1881 proposal
最佳答案
In P1881, the epochs are defined to be a module-level switch. Is there any reason why it has to be on the module level besides convenience? Why not translation-unit level?
理论上,epoch-declaration 可以出现在任何级别,包括 block 范围甚至库范围。我为提案的第一次修订选择了模块,因为它们足够小,可以让大型项目从一个时代优雅地迁移到另一个时代,但也足够大,不会在同一个源文件中出现多个时代。
在贝尔法斯特,有人建议模块分区可能是更好的选择,因为它们允许单个模块逐渐迁移到更新的时代。
could this behavior seamlessly achieved via
#pragma
's, provided compiler support or that would introduce severe technical difficulties (from the implementation or usage point of view) compared to the module-based proposal?
原则上,我认为这是可能的。无论选择 #pragma
还是模块级声明,我相信编译器供应商仍然需要执行大量工作来实现像 epoch 这样的东西(但我相信这是值得的)。
I do not see why it has to be modules.
其实并没有。对于 P1881,我不仅尝试发明一种允许更改语法含义的机制,而且我还尝试设想一种能够很好地适应 C++ 生态系统并促进良好工程实践的机制。
我相信与模块级声明相比, block 作用域声明或 #pragma
有更多的误用机会。我还认为,将 epoch 绑定(bind)到模块将有助于开发人员在模块化现有代码库的同时考虑 epoch 迁移。
总的来说,该提案仍处于早期阶段,所有这些设计决策都可能发生变化。始终欢迎反馈和想法 - 可以在论文中找到作者的电子邮件。
关于P1881 中基于 C++ 模块的时期与潜在的#pragma-based 时期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58839960/
想要匹配单词i.v.大小写不敏感 有图案 (?i)\bi\.v\. 但希望末尾有一个单词边界 上面的模式失败了,因为它匹配 静脉注入(inject) 但是如果我尝试在末尾添加工作边界 (?i)\bi\
当 Eclipse Package Explorer 中的文件夹(链接到文件系统中某处的目录)包含名称以 . (句号),这些文件不会出现。 Eclipse 可以配置为显示这些文件吗?如果可以,如何配置
当 Eclipse Package Explorer 中的文件夹(链接到文件系统中某处的目录)包含名称以 . (句号),这些文件不会出现。 Eclipse 可以配置为显示这些文件吗?如果可以,如何配置
在P1881提案中,提出了 C++ 代码的历元(在模块级别)的概念。这样的功能可以允许在模块级别自定义 C++ 语法和 C++ 行为,而不必破坏向后兼容性。 More elaborate motiva
我是 git 的新手,我有一个关于在 git 中添加文件的问题。我发现了多个关于 git add . 和 git add -a、git add --all、git 之间区别的 stackoverflo
我是一名优秀的程序员,十分优秀!