Templating a class

后端 未结 0 633
走了就别回头了
走了就别回头了 2020-12-05 10:51
class list_node {
    std::string data;
    std::shared_ptr next;

public:
    list_node(std::string _st) : data(_st), next(nullptr) {};

    list_n         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题