web-dev-qa-db-ja.com

std :: lexical_cast-そのようなことはありますか?

C++標準ライブラリはこの関数を定義していますか、それともBoostに頼らなければなりませんか?

Webを検索したところ、Boost以外は見つかりませんでしたが、ここで質問した方が良いと思いました。

72
smallB

部分的にのみ。

C++ 11 _<string>_には、組み込み型の_std::to_string_があります。

_[n3290: 21.5/7]:_

_string to_string(int val);
string to_string(unsigned val);
string to_string(long val);
string to_string(unsigned long val);
string to_string(long long val);
string to_string(unsigned long long val);
string to_string(float val);
string to_string(double val);
string to_string(long double val);
_

戻り値:各関数は、sprintf(buf, fmt, val)書式指定子_"%d"_、_"%u"_、_"%ld"_、_"%lu"_、_"%lld"_、_"%llu"_、_"%f"_、 _"%f"_、または_"%Lf"_、それぞれ、bufは十分なサイズの内部文字バッファーを示します。

また、逆の方向に進む次のものもあります。

_[n3290: 21.5/1, 21.5/4]:_

_int stoi(const string& str, size_t *idx = 0, int base = 10);
long stol(const string& str, size_t *idx = 0, int base = 10);
unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
long long stoll(const string& str, size_t *idx = 0, int base = 10);
unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
float stof(const string& str, size_t *idx = 0);
double stod(const string& str, size_t *idx = 0);
long double stold(const string& str, size_t *idx = 0);
_

ただし、使用できる一般的なものは存在せず(少なくとも TR2まで 、多分!)、C++ 03にはまったくありません。

いいえ、C++ 11でもありませんが、 含めることを提案 次のstdライブラリ拡張のセットであるTechnical Report 2にあります。

18
CharlesB

Std :: lexical_castはありませんが、 stringstreams を使用すると、いつでも似たようなことができます。

template <typename T>
T lexical_cast(const std::string& str)
{
    T var;
    std::istringstream iss;
    iss.str(str);
    iss >> var;
    // deal with any error bits that may have been set on the stream
    return var;
}
12
luke

いいえ、それは純粋なBoostのみです。

ブーストが必要ない場合は、 fmt という軽量ライブラリが次を実装します。

// Works with all the C++11 features and AFAIK faster then boost or standard c++11
std::string string_num = fmt::format_int(123456789).str(); // or .c_str()

公式ページ のその他の例。

位置による引数へのアクセス:

format("{0}, {1}, {2}", 'a', 'b', 'c');
// Result: "a, b, c"
format("{}, {}, {}", 'a', 'b', 'c');
// Result: "a, b, c"
format("{2}, {1}, {0}", 'a', 'b', 'c');
// Result: "c, b, a"
format("{0}{1}{0}", "abra", "cad");  // arguments' indices can be repeated
// Result: "abracadabra"

テキストの整列と幅の指定:

format("{:<30}", "left aligned");
// Result: "left aligned                  "
format("{:>30}", "right aligned");
// Result: "                 right aligned"
format("{:^30}", "centered");
// Result: "           centered           "
format("{:*^30}", "centered");  // use '*' as a fill char
// Result: "***********centered***********"

%+ f、%-f、および%fを置き換えて、符号を指定します。

format("{:+f}; {:+f}", 3.14, -3.14);  // show it always
// Result: "+3.140000; -3.140000"
format("{: f}; {: f}", 3.14, -3.14);  // show a space for positive numbers
// Result: " 3.140000; -3.140000"
format("{:-f}; {:-f}", 3.14, -3.14);  // show only the minus -- same as '{:f}; {:f}'
// Result: "3.140000; -3.140000"

%xと%oを置き換えて、値を異なるベースに変換します。

format("int: {0:d};  hex: {0:x};  oct: {0:o}; bin: {0:b}", 42);
// Result: "int: 42;  hex: 2a;  oct: 52; bin: 101010"
// with 0x or 0 or 0b as prefix:
format("int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}", 42);
// Result: "int: 42;  hex: 0x2a;  oct: 052;  bin: 0b101010"
4