gpt4 book ai didi

c++ - 如何在 C++-CLI 中使用 ConditionalAttribute?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:59:25 24 4
gpt4 key购买 nike

我有一个 C++-CLI 引用类,它公开了一个用 C++ 实现的分析基础结构。

在 C++ 中,我有预处理器指令 PROFILING_ENABLED 来确定代码中是否存在侵入式分析函数。

当将这些暴露给托管代码时,我认为使用托管 ConditionalAttribute 是合适的。但是我在语法上遇到了困难。

这是我的尝试:

#ifdef PROFILING_ENABLED

// c++ macros are defined and active on the project level, I would like the
// conditional attribute to be active as well.

#define MANAGED_PROFILING_ENABLED

// how do I define the managed conditional "MANAGED_PROFILING_ENABLED" in C++-CLI?



#endif

public ref class Profiler
{
public:
[ConditionalAttribute("MANAGED_PROFILING_ENABLED")] // this compile but always inactive
static void PushRange(System::String ^ name, Color color);

[ConditionalAttribute("MANAGED_PROFILING_ENABLED")]
static void PopRange();
};

我想实现以下目标:如果 native c++ 预处理器指令是 active,则托管的 ConditionalAttribute 也应该是 active。另一方面,如果 native c++ 预处理器指令是inactive,则托管的 ConditionalAttribute 应该是inactive

最佳答案

下面的标准文件很旧。但假设,可能仍然有效。

https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-372.pdf

转到第 29.4.3 节(您可以在下面找到有关 c++/CLI 中的条件属性的内容)。

C++/CLI does not provide this ability; although attributes of this type are accepted, they have no affect on code generation or execution.

关于c++ - 如何在 C++-CLI 中使用 ConditionalAttribute?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50267351/

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