ลองพิจารณาตัวอย่างนี้ (มาจากที่นี่ ):
#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;
}
มันรวบรวมโดยไม่มีข้อผิดพลาดใน gcc9.2แต่ gcc7.2 และเสียงดังกราว 10.0.0 บ่นเกี่ยวกับการB
ไม่สมบูรณ์ ข้อผิดพลาดของเสียงดังกราวคือ:
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
มันไม่สำคัญอีกต่อไปถ้าประเภทนั้นเสร็จสมบูรณ์หรือไม่ (และฉันเดาว่าฉันผิดกับ)
B
ไม่สมบูรณ์หรือไม่ถือว่าเสร็จสมบูรณ์alias-declaration
ค่ะ
.f()
บ่นเกี่ยวกับ นั่นทำให้รู้สึก; ชนิดที่ไม่สมบูรณ์ยังไม่ได้เป็นสมาชิกB
f