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

TColor Initialise with int works with {} but not ()

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

当我使用旧的“经典”编译器时,我曾经为我自己的 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 允许 enumint 初始化为 {..}:

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 之前,它应该拒绝两者)。