문제

I have a function :

template<typename T> f(T x) { do something with x; }

I want to pass this auto pointer into the function

auto x = ...
f<???>(x)

Is there anyway for me to do so ?

도움이 되었습니까?

해결책

Just call it like

auto x = ...
f(x)

templated functions automatically deduce the type depending on the arguments you pass it. In fact that's the preferred way to call a templated function.

If you really want to explicitly give it the type (I don't recommend doing that) you can use decltype for it:

auto x = ...
f<decltype(x)>(x)

Here a minimal proof: http://coliru.stacked-crooked.com/a/d01070d90c0b9803

다른 팁

compiler should be smart enough to figure out the type, so

auto x = ...
f(x);

or you can use decltype

auto x = ...
f<decltype(x)>(x);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top