gpt4 book ai didi

c++ - 类模板成员函数没有 "redefinition of default parameter error"?

转载 作者:可可西里 更新时间:2023-11-01 17:58:02 33 4
gpt4 key购买 nike

为什么下面没有编译错误?:

// T.h

template<class T> class X
{
public:
void foo(int a = 42);
};

// Main.cpp

#include "T.h"
#include <iostream>

template<class T> void X<T>::foo(int a = 13)
{
std::cout << a << std::endl;
}

int main()
{
X<int> x;
x.foo(); // prints 42
}

似乎 13 只是被编译器默默地忽略了。这是为什么?
奇怪的是,如果类模板定义在 Main.cpp 而不是头文件中,我确实得到了默认参数重定义错误。

现在我知道如果它只是一个普通的(非模板)函数,编译器会提示这一点。

标准对类模板成员函数或函数模板中的默认参数有何规定?

最佳答案

8.3.6 §6 The default arguments in a member function definition thatappears outside of the classdefinition are added to the set ofdefault arguments provided by themember function declaration in theclass definition.
[Example:

class C {
void f(int i = 3);
void g(int i, int j = 99);
};
void C::f(int i = 3) // error: default argument already
{ } // specified in class scope
void C::g(int i = 88, int j) // in this translation unit,
{ } // C::g can be called with no argument

--end example]

按照标准,它应该给你一个错误。

关于c++ - 类模板成员函数没有 "redefinition of default parameter error"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2479846/

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