はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ChatGPT

『cppreference.com』

  • 人気
  • 新着
  • すべて
  • History of C - cppreference.com

    5 users

    en.cppreference.com

    [edit] Early C 1969: B created, based on BCPL, to replace PDP-7 assembler as the system programming language for Unix added operators ++, --, compound assignment, remained a typeless language like BCPL 1971: NB ("new B") created when porting B to PDP-11 types (int, char, arrays and pointers), array-to-pointer conversion, compilation to machine code 1972: Language renamed to C struct, operators &&

    • テクノロジー
    • 2019/02/06 20:39
    • あとで読む
    • cppreference.com

      5 users

      en.cppreference.com

      Planned Maintenance The site will be in a temporary read-only mode in the next few weeks to facilitate some long-overdue software updates. We apologize for any inconvenience this may cause!

      • テクノロジー
      • 2019/01/16 20:03
      • C++
      • C++ compiler support - cppreference.com

        8 users

        en.cppreference.com

        This page is maintained as best-effort and may lag behind most recent compiler releases. If you see something is out-of-date, please help us by updating it! The following tables present compiler support for new C++ features. These include accepted revisions to the standard, as well as various technical specifications:

        • テクノロジー
        • 2016/05/08 16:50
        • C++
        • プログラミング
        • The rule of three/five/zero - cppreference.com

          3 users

          en.cppreference.com

          [edit] Rule of three If a class requires a user-defined destructor, a user-defined copy constructor, or a user-defined copy assignment operator, it almost certainly requires all three. Because C++ copies and copy-assigns objects of user-defined types in various situations (passing/returning by value, manipulating a container, etc), these special member functions will be called, if accessible, and

          • テクノロジー
          • 2015/06/28 18:18
          • c++
          • A list of open-source C++ libraries - cppreference.com

            3 users

            en.cppreference.com

            The objective of this page is to build a comprehensive list of open-source C++ libraries, so that when one needs an implementation of particular functionality, one needn’t to waste time searching on web (DuckDuckGo, Google, Bing, etc.) If you know a library that might be useful to others, please add a link to it here. There are no restrictions on what can be included except that the source of the

            • テクノロジー
            • 2013/12/03 17:27
            • c++
            • library
            • std::memory_order - cppreference.com

              4 users

              en.cppreference.com

              enum memory_order { memory_order_relaxed, memory_order_consume, memory_order_acquire, memory_order_release, memory_order_acq_rel, memory_order_seq_cst }; enum class memory_order : /* unspecified */ { relaxed, consume, acquire, release, acq_rel, seq_cst }; inline constexpr memory_order memory_order_relaxed = memory_order::relaxed; inline constexpr memory_order memory_order_consume = memory_order::c

              • テクノロジー
              • 2013/05/05 20:31
              • C++
              • std::basic_string - cppreference.com

                3 users

                en.cppreference.com

                namespace pmr { template< class CharT, class Traits = std::char_traits<CharT> > using basic_string = std::basic_string<CharT, Traits, std::pmr::polymorphic_allocator<CharT>>; } The class template basic_string stores and manipulates sequences of character-like objects, which are non-array objects of TrivialType and StandardLayoutType. The class is dependent neither on the character type nor on the

                • テクノロジー
                • 2012/07/01 20:10
                • C++
                • cppreference.com

                  51 users

                  en.cppreference.com

                  Planned Maintenance The site will be in a temporary read-only mode in the next few weeks to facilitate some long-overdue software updates. We apologize for any inconvenience this may cause!

                  • テクノロジー
                  • 2012/04/24 16:04
                  • C++
                  • C++11
                  • リファレンス
                  • reference
                  • STL
                  • プログラミング
                  • C reference - cppreference.com

                    4 users

                    en.cppreference.com

                    This page was last modified on 3 July 2017, at 20:56. Privacy policy About cppreference.com Disclaimers

                    • 学び
                    • 2012/04/24 09:40
                    • C++ keywords - cppreference.com

                      3 users

                      en.cppreference.com

                      This is a list of reserved keywords in C++. Since they are used by the language, these keywords are not available for re-definition or overloading. As an exception, they are not considered reserved in attributes (excluding attribute argument lists).(since C++11) alignas (C++11) alignof (C++11) and and_eq asm atomic_cancel (TM TS) atomic_commit (TM TS) atomic_noexcept (TM TS) auto (1) (3) (4) (5) b

                      • 学び
                      • 2012/03/24 11:21
                      • std::accumulate - cppreference.com

                        3 users

                        en.cppreference.com

                        1) Initializes the accumulator acc (of type T) with the initial value init and then modifies it with acc = acc + *i(until C++20)acc = std::move(acc) + *i(since C++20) for every iterator i in the range [first, last) in order. 2) Initializes the accumulator acc (of type T) with the initial value init and then modifies it with acc = op(acc, *i)(until C++20)acc = op(std::move(acc), *i)(since C++20) fo

                        • 暮らし
                        • 2012/02/14 22:07
                        • std::future - cppreference.com

                          3 users

                          en.cppreference.com

                          The class template std::future provides a mechanism to access the result of asynchronous operations: An asynchronous operation (created via std::async, std::packaged_task, or std::promise) can provide a std::future object to the creator of that asynchronous operation. The creator of the asynchronous operation can then use a variety of methods to query, wait for, or extract a value from the std::fu

                          • テクノロジー
                          • 2011/12/21 16:41
                          • C++
                          • C++ Operator Precedence - cppreference.com

                            6 users

                            en.cppreference.com

                            ↑ The operand of sizeof cannot be a C-style type cast: the expression sizeof (int) * p is unambiguously interpreted as (sizeof(int)) * p, but not sizeof((int)*p). ↑ The expression in the middle of the conditional operator (between ? and :) is parsed as if parenthesized: its precedence relative to ?: is ignored. When parsing an expression, an operator which is listed on some row of the table above

                            • テクノロジー
                            • 2011/08/29 13:40
                            • C++
                            • C++ reference - cppreference.com

                              47 users

                              en.cppreference.com

                              Preprocessor − Comments ASCII chart Basic concepts Keywords Names (lookup) Types (fundamental types) The main function Modules (C++20) Contracts (C++26) Expressions Value categories Evaluation order Operators (precedence) Conversions − Literals Constant expressions Statements if − switch for − range-for (C++11) while − do-while Declarations − Initialization Functions − Overloading Coroutines (C++2

                              • テクノロジー
                              • 2011/08/13 20:11
                              • c++
                              • reference
                              • *リファレンス
                              • Programming
                              • document
                              • C++11
                              • リファレンス
                              • library
                              • cppreference.com

                                46 users

                                en.cppreference.com

                                Function objects − hash (C++11) Swap − Type operations (C++11) Integer comparison (C++20) pair − tuple (C++11) optional (C++17) expected (C++23) variant (C++17) − any (C++17) bitset − Bit manipulation (C++20)

                                • 暮らし
                                • 2009/01/02 18:46
                                • c++
                                • reference
                                • リファレンス
                                • programming
                                • cppreference.com

                                  96 users

                                  en.cppreference.com

                                  Keywords − Preprocessor ASCII chart Basic concepts Comments Names (lookup) Types (fundamental types) The main function Modules (C++20) Contracts (C++26) Expressions Value categories Evaluation order Operators (precedence) Conversions − Literals Constant expressions Statements if − switch for − range-for (C++11) while − do-while Declarations − Initialization Functions − Overloading Classes (unions)

                                  • 暮らし
                                  • 2009/01/02 01:03
                                  • c++
                                  • reference
                                  • programming
                                  • STL
                                  • リファレンス
                                  • プログラミング
                                  • API
                                  • c
                                  • まとめ

                                  このページはまだ
                                  ブックマークされていません

                                  このページを最初にブックマークしてみませんか?

                                  『cppreference.com』の新着エントリーを見る

                                  キーボードショートカット一覧

                                  j次のブックマーク

                                  k前のブックマーク

                                  lあとで読む

                                  eコメント一覧を開く

                                  oページを開く

                                  はてなブックマーク

                                  • 総合
                                  • 一般
                                  • 世の中
                                  • 政治と経済
                                  • 暮らし
                                  • 学び
                                  • テクノロジー
                                  • エンタメ
                                  • アニメとゲーム
                                  • おもしろ
                                  • アプリ・拡張機能
                                  • 開発ブログ
                                  • ヘルプ
                                  • お問い合わせ
                                  • ガイドライン
                                  • 利用規約
                                  • プライバシーポリシー
                                  • 利用者情報の外部送信について
                                  • ガイドライン
                                  • 利用規約
                                  • プライバシーポリシー
                                  • 利用者情報の外部送信について

                                  公式Twitter

                                  • 公式アカウント
                                  • ホットエントリー

                                  はてなのサービス

                                  • はてなブログ
                                  • はてなブログPro
                                  • 人力検索はてな
                                  • はてなブログ タグ
                                  • はてなニュース
                                  • ソレドコ
                                  • App Storeからダウンロード
                                  • Google Playで手に入れよう
                                  Copyright © 2005-2025 Hatena. All Rights Reserved.
                                  設定を変更しましたx