如何在不使用语法的情况下访问"locale"one_answers"global"
using namespace std
以下语法我对有问题
#include <locale>
locale::global(locale("swedish"));
提前感谢!
locale
位于std
命名空间中:
std::locale::global(std::locale("swedish"));