std::vector<std::complex<float> > c; std::vector<float> d; std::transform(c.begin(), c.end(), d.begin(), std::real<float>);
为什么编译器无法解析重载函数的地址real<float>?
real<float>
编译器意味着哪些重载函数?
c++ algorithm stl overloading
algorithm ×1
c++ ×1
overloading ×1
stl ×1