在C或C++中是否有类似于Java中的 intern() 方法?如果没有,如何在C或C++中执行string interning? 最佳答案 boost::flyweight< std::string >似乎正是您要寻找的。