言語タイプのプレフィックス/サフィックスの完全なリストを誰かに教えてもらえますか?
プレフィックスの例:
auto s1 (u8"I'm a UTF-8 string.");
auto s2 (u"This is a UTF-16 string.");
auto s3 (U"This is a UTF-32 string.");
auto s4 (R"(RAW \ STRING " )");
auto s5 (L"wide string");
//etc..
//*I've only seen prefixes like this for strings.
接尾辞の例:
auto n1 = 7.2f;
auto n2 = 7.2d;
auto n3 = 100L;
auto n4 = 10000LL;
//etc..
私の検索の試みはすべて、「独自のユーザー定義リテラルを作成する」ことに私を送ります。
おそらく、これらのインスタンスには、私が知らない特定の名前がありますか?