对于const的引用,std :: is_const的等价物是什么?

时间:2015-06-12 15:30:10

标签: c++ types const

考虑代码:

int const  x = 50;
int const& y = x;
cout << std::is_const<decltype(x)>::value << endl; // 1
cout << std::is_const<decltype(y)>::value << endl; // 0

这是有道理的,因为y不是const引用,它是对const的引用。

foo是否为std::foo<decltype(y)>::value?如果没有,那么定义我自己的是什么?

1 个答案:

答案 0 :(得分:17)

使用remove_reference

HttpsURLConnection.setDefaultSSLSocketFactory(sCtxt.getSocketFactory());  

See on coliru