gpt4 book ai didi

c++ - TColor Initialise with int 适用于 {} 但不适用于 ()

转载 作者:行者123 更新时间:2023-12-05 04:52:18 26 4
gpt4 key购买 nike

我在 IDE 中使用 Embarcader C++Builder 10.4.2 和 Clang32 编译器来构建 VCL Windows 32 位应用程序。

当我使用旧的“Classic”编译器时,我曾经为我自己的 TColor 常量使用 () 初始值设定项。但是 Clang32 编译器不接受这个。 Clang32 确实接受相同的初始化值,但使用 C++ 17(我认为更早){} 初始化器。

感谢 Remy 的建议:我应该在我的原始帖子中包含错误消息。 Clang32编译器报错信息为:

[C++ Error] Unit1.cpp(15, 13): cannot initialize a variable of type 'const System::Uitypes::TColor' with an rvalue of type 'int'

我不明白为什么 Clang32 不喜欢 () 初始化语法。谁能解释一下?

附上代码示例:

#include <vcl.h>

const TColor MeterBarBezelRimColour{0x00DDDDDD}; // works with Clang32 - (too "modern" for Classic compiler)

const TColor AnotherBezelRimColour(0x00CCCCCC); // give an error with Clang32 (but does work for Classic compiler).

// WHY is this not accepted by Clang?

最佳答案

Direct initialization不允许使用 (..)int 初始化 enum

从 C++17 开始:

list_initialization允许使用 {..}int 初始化 enum:

Otherwise, if T is a enumeration type that is either scoped or unscoped with fixed underlying type, and if the braced-init-list has only one initializer, and if the conversion from the initializer to the underlying type is non-narrowing, and if the initialization is direct-list-initialization, then the enumeration is initialized with the result of converting the initializer to its underlying type.

Clang 接受 {..}(C++17 起)并拒绝 (..) 构造是正确的。

你的“经典”编译器在这方面是错误的(C++17 之前,它应该拒绝两者)。

关于c++ - TColor Initialise with int 适用于 {} 但不适用于 (),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66562464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com