是否可以在 c++ stl 项目中使用 String.cpp 和 String.h 创建 String 类?
String.h
#include <string>
class String {
public:
static std::string Replace(const std::string& str, const std::string& oldValue, const std::string& newValue);
};
除非将类重命名为 Stringy 之类的其他名称,否则会出现编译错误