numget.cpp

来自「stl自带源码」· C++ 代码 · 共 56 行

CPP
56
字号
/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 1999. * Permission to copy, use, modify, sell and distribute this software * is granted provided this copyright notice appears in all copies. * This software is provided "as is" without express or implied * warranty, and with no claim as to its suitability for any purpose. */#include <locale>#include <iostream>#include <cstdlib>#include <iterator>int main(){    // create copy of current global locale    std::locale loc;    // iterator to read from standard input    typedef std::istreambuf_iterator<char> InIt;    InIt beg = InIt(std::cin);    InIt end = InIt();    // stream which defines input format    std::ios_base& fmt = std::cin;    // declare output arguments    std::ios_base::iostate err;    float value;    // get numeric input facet of the locale loc    std::num_get<char, InIt> const& ng      = std::use_facet<std::num_get<char, InIt> >(loc);    // read value with numeric input facet    ng.get(beg, end, fmt, err, value);    // print value or error message    if (err == std::ios_base::goodbit) {        std::cout << "value: " << value << '\n';    }    else if (err == std::ios_base::eofbit) {        std::cout << "value: " << value << " (EOF encountered)\n";    }    else if (err & std::ios_base::badbit) {        std::cerr << "fatal error while reading numeric value\n";        return EXIT_FAILURE;    }    else if (err & std::ios_base::failbit) {        std::cerr << "format error while reading numeric value\n";        return EXIT_FAILURE;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?