使用C ++方法的gcc属性

时间:2014-01-14 14:39:55

标签: c++ gcc powerpc

在GCC中使用头文件中定义的C ++方法,是否可以使用属性语法?请有人为我提供一个例子。以下代码不起作用:

class foo
{
    public:
        void my_func() __attribute__((hot));
        void my_func()
        {
            // Some stuff
        }
};

您似乎必须将属性放在声明中,而不是放在函数的定义中。在头文件中定义方法/函数时,没有单独的声明。

还有如何在模板中使用它。例如,以下代码无法使用'错误进行编译:函数定义中不允许使用属性'。

/// Template version of max for type T
template <typename T>
inline T max(const T x, const T y) __attribute((const))
{
    if (x > y)
        return x;
    else
        return y;
}

2 个答案:

答案 0 :(得分:7)

看起来您可能需要将属性移动到函数名称之前。 在GCC 4.6.3上,您的代码无法编译,但在代码编译之下。

template <typename T>
inline T __attribute__((const)) max(const T x, const T y)
{
    if (x > y)
        return x;
    else
        return y;
}

答案 1 :(得分:1)

以下作品(g ++ 4.6.3):

class foo
{
    public:
        void my_func() __attribute__((hot))
        {
            // Some stuff
        }
};
  • 您不得使用单独的声明
  • 您需要删除@Joachim
  • 所述的尾随下划线

示例:

class foo {
public:
  void my_func() __attribute__((deprecated)) {
  }

  void my_func2() __attribute__((noinline)) {
  }
};

int main() {
  foo f;
  f.my_func();
  f.my_func2();
  return 0;
}
$ g++ -c -Wall -pedantic a.cpp
a.cpp: In function int main():
a.cpp:12:13: warning: void foo::my_func() is deprecated (declared at a.cpp:3) [-Wdeprecated-declarations]