constructible专题

C++备忘录087:std::is_convertible vs std::is_constructible

#include <type_traits>struct A {};struct B {B(A) {};};struct C {explicit C