這裡有一份歷史版本的網站, 每日更新.
Alternatively, a fully indexed and full-text searchable Windows HTML help (.chm) version of this site's Wiki content (as of February 2009) is also available. It works on many Windows versions, including the most recent ones, without the need for additional software. Since this help file is indexed it can be used in a wide range of Integrated Development Environments (IDE) that support .chm files, e.g. for keyword-sensitive access to function and template names.
You can download the help file here: cppreferencecom_feb09.zip
Sure, that would be great! All content here is licensed under the Creative Commons Attribution 3.0 license.
All that we would ask is that you include a link back to cppreference.com so that people know where to get the most up-to-date content.
當然。如果你見到錯誤,請修正它。如果你想增添內容, make sure it's not already there, and then edit away.
Just be gentle with your changes, and think before you type.
cppreference.com is powered by DokuWiki.
這裡沒有「程式入門」的教學。這個網站是讓那些對 C++ 有點經驗的程式設計師用來查詢語法的。如果你想學 C 或 C++ 的話,看看下列網站:
Few things in life are absolute. Many C++ compilers have added or missing functionality. If you don't find what you are looking for here, don't assume that it doesn't exist. Do a search on Google for it.
Most of the code on this site was compiled under Linux (Red Hat, Debian, or Ubuntu) with the GNU Compiler Collection. Since this site is merely a reference for the C++ specification, not every compiler will support every function listed here. For example,
#include <vector> #include <Vector> #include <vector.h>
(according to the spec, the first of those should work, and the compiler should know enough to use it to reference the real vector header file.)
#include <cstdio>
instead of
#include <stdio.h>cout << "hello world!";
However, newer compilers require that you either use
std::cout << "hello world!";
or declare what namespace to use with the “using namespace” command.
…The list goes on and on. In other words, individual results may vary.
如果你在網站上發現任何的錯誤? 請協助修正它們. 或是連絡 comments@cppreference.com.
它像是一個社群服務, 提供相關語法的查詢, 由愛好者所互助.