tkgg1086 发表于 2018-6-10 17:11:21

求助大神关于C2088"<<": 对于 class 非法

以下是出错程序,请教一下大家,谢谢!

--------------------------------------------------------------------
namespace Number{


    /** \brief Converts a numerical variable to its ASCII string equivalent */
    template <typename T>
    std::string ToString( T number ){
    std::ostringstream ss;
      ss << std::setprecision(NUM_TO_STRING_PRECISION);
      ss << number;//会出错,为什么?C2088        "<<": 对于 class 非法
      return ss.str();
    }

    template <> std::string ToString<char>( char number );
    template <> std::string ToString<unsigned char>( unsigned char number );


}

风过无痕丶 发表于 2018-6-11 09:47:35

本帖最后由 风过无痕丶 于 2018-6-11 09:49 编辑

代码给全啊
页: [1]
查看完整版本: 求助大神关于C2088"<<": 对于 class 非法