Bu örneği düşünün ( buradan geliyor ):
#include <type_traits>
#include <iostream>
template <typename U>
struct A {
};
struct B {
template <typename F = int>
A<F> f() { return A<F>{}; }
using default_return_type = decltype(std::declval<B>().f());
};
int main()
{
B::default_return_type x{};
std::cout << std::is_same< B::default_return_type, A<int>>::value;
}
Bu gcc9.2 üzerinde hatasız derler şikayet 10.0.0 ama gcc7.2 ve clang B
tam olmayan. Clangs hatası:
prog.cc:11:58: error: member access into incomplete type 'B'
using default_return_type = decltype(std::declval<B>().f());
^
prog.cc:7:8: note: definition of 'B' is not complete until the closing '}'
struct B {
^
prog.cc:16:8: error: no type named 'default_return_type' in 'B'
B::default_return_type x{};
~~~^
prog.cc:17:35: error: no member named 'default_return_type' in 'B'
std::cout << std::is_same< B::default_return_type, A<int>>::value;
~~~^
std::declval
artık türün eksiksiz olup olmadığı artık önemli değil (ve bununla ilgili yanlış olduğumu tahmin ediyorum)
B
ne tam ne de tam olarak kabul olduğunu alias-declaration
.
.f()
. Mantıklı; eksik türünB
bir üyesi yokturf
.