int main() { std::stringstream s1("This is my string."); std::stringstream s2 = s1; // error, copying not allowed }
我找不到为什么我不能复制stringstream的原因.你能提供一些参考吗?
c++ stringstream
c++ ×1
stringstream ×1