c – 创建一个用户定义的类std :: to_string(能)

前端之家收集整理的这篇文章主要介绍了c – 创建一个用户定义的类std :: to_string(能)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道 Java或C#似乎太多了.但是,使我自己的类作为函数std :: to_string的输入有效/可能/很明智吗?
例:
class my_class{
public:
std::string give_me_a_string_of_you() const{
    return "I am " + std::to_string(i);
}
int i;
};

void main(){
    my_class my_object;
    std::cout<< std::to_string(my_object);
}

如果没有这样的事情(我认为那样),最好的办法是什么?

解决方法

首先,一些ADL的帮助:
namespace notstd {
  namespace adl_helper {
    using std::to_string;

    template<class T>
    std::string as_string( T&& t ) {
      return to_string( std::forward<T>(t) );
    }
  }
  template<class T>
  std::string to_string( T&& t ) {
    return adl_helper::as_string(std::forward<T>(t));
  }
}

notstd :: to_string(blah)将对范围内的std :: to_string执行to_string(blah)的ADL查找.

然后我们修改你的课程:

class my_class{
public:
  friend std::string to_string(my_class const& self) const{
    return "I am " + notstd::to_string(self.i);
  }
  int i;
};

现在nostd :: to_string(my_object)找到正确的to_string,和notstd :: to_string(7)一样.

通过触摸更多的工作,我们甚至可以支持.tostring()方法对要自动检测和使用的类型.

原文链接:https://www.f2er.com/c/111805.html

猜你在找的C&C++相关文章