我可以使用下面在Visual Studio 2013中编译的代码来获取系统的语言环境名称。如果在VS2015中编译相同的代码,我将一无所获!这是一个错误吗?然后,如何使用VS2015获取当前系统区域设置的名称?

#include "stdafx.h"
#include <iostream>
#include <locale>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    std::cout << std::locale("").name().c_str() << endl;
}

最佳答案

在VS2015中,他们做到了,因此名称(如果语言环境始终等于您传递给构造函数的参数)(如果有效):

// c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\xlocinfo line 360
void _Construct(const string &_Str,
    category _Cat)
    {   // construct a locale with named facets
    bool _Bad = false;
    _Init();
    if (_Cat != none)
        {   // worth adding, do it
        _TRY_BEGIN
            _BEGIN_LOCINFO(_Lobj(_Cat, _Str.c_str()))
                if (_Badname(_Lobj))
                    _Bad = true;
                else
                    {   // name okay, build the locale
                    _Locimp::_Makeloc(_Lobj, _Cat, _Ptr, 0);
                    // The two lines below were added in VS2015
                    _Ptr->_Catmask = _Cat;
                    _Ptr->_Name = _Str.c_str(); // <--- Here they set the name forcefully
                    }


我相信您必须使用setlocale()代替:

std::cout << setlocale(LC_ALL, "") << endl;


要将其保存在std::locale中,您可以

std::locale loc(setlocale(LC_ALL, ""));


这在VS2013和VS2015中均适用。

关于c++ - 如何使用VS2015获取语言环境名称?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34778356/

10-11 01:09