René's URL Explorer Experiment


Title: C++ 备忘清单 & cpp cheatsheet & Quick Reference

direct link

Domain: devref.9up.dev

authorjaywcjlove
licenseMIT
fundinghttps://jaywcjlove.github.io/#/sponsor

Links:

Quick Referencehttps://devref.9up.dev/index.html
搜索⌘Kjavascript:void(0);
编辑https://github.com/jaywcjlove/reference/blob/main/docs/cpp.md
https://github.com/jaywcjlove/reference
https://devref.9up.dev/docs/cpp.html#c-备忘清单
C++https://zh.cppreference.com/
入门https://devref.9up.dev/docs/cpp.html#入门
hello.cpphttps://devref.9up.dev/docs/cpp.html#hellocpp
变量https://devref.9up.dev/docs/cpp.html#变量
原始数据类型https://devref.9up.dev/docs/cpp.html#原始数据类型
用户输入https://devref.9up.dev/docs/cpp.html#用户输入
交换https://devref.9up.dev/docs/cpp.html#交换
注释https://devref.9up.dev/docs/cpp.html#注释
If 语句https://devref.9up.dev/docs/cpp.html#if-语句
循环https://devref.9up.dev/docs/cpp.html#循环
函数https://devref.9up.dev/docs/cpp.html#函数
引用https://devref.9up.dev/docs/cpp.html#引用
命名空间https://devref.9up.dev/docs/cpp.html#命名空间
C++ 数组https://devref.9up.dev/docs/cpp.html#c-数组
定义https://devref.9up.dev/docs/cpp.html#定义
操控https://devref.9up.dev/docs/cpp.html#操控
展示https://devref.9up.dev/docs/cpp.html#展示
多维https://devref.9up.dev/docs/cpp.html#多维
C++ 条件https://devref.9up.dev/docs/cpp.html#c-条件
If Clausehttps://devref.9up.dev/docs/cpp.html#if-clause
Else if 语句https://devref.9up.dev/docs/cpp.html#else-if-语句
运算符https://devref.9up.dev/docs/cpp.html#运算符
关系运算符https://devref.9up.dev/docs/cpp.html#关系运算符
赋值运算符https://devref.9up.dev/docs/cpp.html#赋值运算符
逻辑运算符https://devref.9up.dev/docs/cpp.html#逻辑运算符
位运算符https://devref.9up.dev/docs/cpp.html#位运算符
三元运算符https://devref.9up.dev/docs/cpp.html#三元运算符
switch 语句https://devref.9up.dev/docs/cpp.html#switch-语句
C++ 循环https://devref.9up.dev/docs/cpp.html#c-循环
Whilehttps://devref.9up.dev/docs/cpp.html#while
Do-whilehttps://devref.9up.dev/docs/cpp.html#do-while
Continue 语句https://devref.9up.dev/docs/cpp.html#continue-语句
无限循环https://devref.9up.dev/docs/cpp.html#无限循环
for_each (C++11 起)https://devref.9up.dev/docs/cpp.html#for_each-c11-起
基于范围 (C++11 起)https://devref.9up.dev/docs/cpp.html#基于范围-c11-起
中断语句https://devref.9up.dev/docs/cpp.html#中断语句
Several variationshttps://devref.9up.dev/docs/cpp.html#several-variations
autohttps://devref.9up.dev/docs/cpp.html#auto
C++ 函数https://devref.9up.dev/docs/cpp.html#c-函数
参数和返回https://devref.9up.dev/docs/cpp.html#参数和返回
重载https://devref.9up.dev/docs/cpp.html#重载
内置函数https://devref.9up.dev/docs/cpp.html#内置函数
Lambda 表达式https://devref.9up.dev/docs/cpp.html#lambda-表达式
C++智能指针https://devref.9up.dev/docs/cpp.html#c智能指针
智能指针基础https://devref.9up.dev/docs/cpp.html#智能指针基础
unique_ptrhttps://devref.9up.dev/docs/cpp.html#unique_ptr
shared_ptrhttps://devref.9up.dev/docs/cpp.html#shared_ptr
weak_ptrhttps://devref.9up.dev/docs/cpp.html#weak_ptr
循环引用问题https://devref.9up.dev/docs/cpp.html#循环引用问题
C++多线程https://devref.9up.dev/docs/cpp.html#c多线程
多线程介绍https://devref.9up.dev/docs/cpp.html#多线程介绍
线程的创建https://devref.9up.dev/docs/cpp.html#线程的创建
线程的销毁https://devref.9up.dev/docs/cpp.html#线程的销毁
this_threadhttps://devref.9up.dev/docs/cpp.html#this_thread
https://devref.9up.dev/docs/cpp.html#锁
锁的基本操作https://devref.9up.dev/docs/cpp.html#锁的基本操作
更简单的锁 —— std::lock_guardhttps://devref.9up.dev/docs/cpp.html#更简单的锁--stdlock_guardmutex
unique_lockhttps://devref.9up.dev/docs/cpp.html#unique_lockmutex
std::adopt_lockhttps://devref.9up.dev/docs/cpp.html#stdadopt_lock
std::try_to_lockhttps://devref.9up.dev/docs/cpp.html#stdtry_to_lock
std::defer_lockhttps://devref.9up.dev/docs/cpp.html#stddefer_lock
std::unique_lock::releasehttps://devref.9up.dev/docs/cpp.html#stdunique_lockmutexrelease
std::call_oncehttps://devref.9up.dev/docs/cpp.html#stdcall_once
std::condition_variablehttps://devref.9up.dev/docs/cpp.html#stdcondition_variable
创建条件变量https://devref.9up.dev/docs/cpp.html#创建条件变量
等待条件变量被通知https://devref.9up.dev/docs/cpp.html#等待条件变量被通知
std::condition_variable::notify_onehttps://devref.9up.dev/docs/cpp.html#stdcondition_variablenotify_one
std::condition_variable::notify_allhttps://devref.9up.dev/docs/cpp.html#stdcondition_variablenotify_all
获取线程的运行结果https://devref.9up.dev/docs/cpp.html#获取线程的运行结果
创建异步任务https://devref.9up.dev/docs/cpp.html#创建异步任务
获取异步任务的返回值https://devref.9up.dev/docs/cpp.html#获取异步任务的返回值
std::async 的额外参数https://devref.9up.dev/docs/cpp.html#stdasync-的额外参数
返回值的状态https://devref.9up.dev/docs/cpp.html#返回值的状态
多个返回值https://devref.9up.dev/docs/cpp.html#多个返回值
创建线程https://devref.9up.dev/docs/cpp.html#创建线程
传递参数给线程函数https://devref.9up.dev/docs/cpp.html#传递参数给线程函数
使用Lambda表达式创建线程https://devref.9up.dev/docs/cpp.html#使用lambda表达式创建线程
处理线程间的同步:https://devref.9up.dev/docs/cpp.html#处理线程间的同步
使用std::async启动异步任务:https://devref.9up.dev/docs/cpp.html#使用stdasync启动异步任务
C++ 预处理器https://devref.9up.dev/docs/cpp.html#c-预处理器
预处理器https://devref.9up.dev/docs/cpp.html#预处理器
Includeshttps://devref.9up.dev/docs/cpp.html#includes
Defineshttps://devref.9up.dev/docs/cpp.html#defines
Ifhttps://devref.9up.dev/docs/cpp.html#if
Errorhttps://devref.9up.dev/docs/cpp.html#error
https://devref.9up.dev/docs/cpp.html#宏
令牌连接https://devref.9up.dev/docs/cpp.html#令牌连接
字符串化https://devref.9up.dev/docs/cpp.html#字符串化
文件和行https://devref.9up.dev/docs/cpp.html#文件和行
各种各样的https://devref.9up.dev/docs/cpp.html#各种各样的
转义序列https://devref.9up.dev/docs/cpp.html#转义序列
关键字https://devref.9up.dev/docs/cpp.html#关键字
预处理器https://devref.9up.dev/docs/cpp.html#预处理器-1
另见https://devref.9up.dev/docs/cpp.html#另见
https://devref.9up.dev/docs/cpp.html#入门
https://devref.9up.dev/docs/cpp.html#hellocpp
https://devref.9up.dev/docs/cpp.html#变量
https://devref.9up.dev/docs/cpp.html#原始数据类型
https://devref.9up.dev/docs/cpp.html#用户输入
https://devref.9up.dev/docs/cpp.html#交换
https://devref.9up.dev/docs/cpp.html#注释
https://devref.9up.dev/docs/cpp.html#if-语句
条件https://devref.9up.dev/docs/cpp.html#c-%E6%9D%A1%E4%BB%B6
https://devref.9up.dev/docs/cpp.html#循环
循环 Loopshttps://devref.9up.dev/docs/cpp.html#c-%E5%BE%AA%E7%8E%AF
https://devref.9up.dev/docs/cpp.html#函数
函数 Functionshttps://devref.9up.dev/docs/cpp.html#c-%E5%87%BD%E6%95%B0
https://devref.9up.dev/docs/cpp.html#引用
https://devref.9up.dev/docs/cpp.html#命名空间
https://devref.9up.dev/docs/cpp.html#c-数组
https://devref.9up.dev/docs/cpp.html#定义
https://devref.9up.dev/docs/cpp.html#操控
https://devref.9up.dev/docs/cpp.html#展示
https://devref.9up.dev/docs/cpp.html#多维
https://devref.9up.dev/docs/cpp.html#c-条件
https://devref.9up.dev/docs/cpp.html#if-clause
https://devref.9up.dev/docs/cpp.html#else-if-语句
https://devref.9up.dev/docs/cpp.html#运算符
https://devref.9up.dev/docs/cpp.html#关系运算符
https://devref.9up.dev/docs/cpp.html#赋值运算符
https://devref.9up.dev/docs/cpp.html#逻辑运算符
https://devref.9up.dev/docs/cpp.html#位运算符
https://devref.9up.dev/docs/cpp.html#三元运算符
https://devref.9up.dev/docs/cpp.html#switch-语句
https://devref.9up.dev/docs/cpp.html#c-循环
https://devref.9up.dev/docs/cpp.html#while
https://devref.9up.dev/docs/cpp.html#do-while
https://devref.9up.dev/docs/cpp.html#continue-语句
https://devref.9up.dev/docs/cpp.html#无限循环
https://devref.9up.dev/docs/cpp.html#for_each-c11-起
https://devref.9up.dev/docs/cpp.html#基于范围-c11-起
https://devref.9up.dev/docs/cpp.html#中断语句
https://devref.9up.dev/docs/cpp.html#several-variations
https://devref.9up.dev/docs/cpp.html#auto
https://devref.9up.dev/docs/cpp.html#c-函数
https://devref.9up.dev/docs/cpp.html#参数和返回
https://devref.9up.dev/docs/cpp.html#重载
https://devref.9up.dev/docs/cpp.html#内置函数
https://devref.9up.dev/docs/cpp.html#lambda-表达式
https://devref.9up.dev/docs/cpp.html#c智能指针
https://devref.9up.dev/docs/cpp.html#智能指针基础
https://devref.9up.dev/docs/cpp.html#unique_ptr
https://devref.9up.dev/docs/cpp.html#shared_ptr
https://devref.9up.dev/docs/cpp.html#weak_ptr
https://devref.9up.dev/docs/cpp.html#循环引用问题
https://devref.9up.dev/docs/cpp.html#c多线程
https://devref.9up.dev/docs/cpp.html#多线程介绍
https://devref.9up.dev/docs/cpp.html#线程的创建
https://devref.9up.dev/docs/cpp.html#线程的销毁
https://devref.9up.dev/docs/cpp.html#this_thread
https://devref.9up.dev/docs/cpp.html#锁
https://devref.9up.dev/docs/cpp.html#锁的基本操作
https://devref.9up.dev/docs/cpp.html#更简单的锁--stdlock_guardmutex
https://devref.9up.dev/docs/cpp.html#unique_lockmutex
https://devref.9up.dev/docs/cpp.html#stdadopt_lock
https://devref.9up.dev/docs/cpp.html#stdtry_to_lock
https://devref.9up.dev/docs/cpp.html#stddefer_lock
https://devref.9up.dev/docs/cpp.html#stdunique_lockmutexrelease
https://devref.9up.dev/docs/cpp.html#stdcall_once
https://devref.9up.dev/docs/cpp.html#stdcondition_variable
https://devref.9up.dev/docs/cpp.html#创建条件变量
https://devref.9up.dev/docs/cpp.html#等待条件变量被通知
https://devref.9up.dev/docs/cpp.html#stdcondition_variablenotify_one
https://devref.9up.dev/docs/cpp.html#stdcondition_variablenotify_all
https://devref.9up.dev/docs/cpp.html#获取线程的运行结果
https://devref.9up.dev/docs/cpp.html#创建异步任务
https://devref.9up.dev/docs/cpp.html#获取异步任务的返回值
https://devref.9up.dev/docs/cpp.html#stdasync-的额外参数
https://devref.9up.dev/docs/cpp.html#返回值的状态
https://devref.9up.dev/docs/cpp.html#多个返回值
https://devref.9up.dev/docs/cpp.html#创建线程
https://devref.9up.dev/docs/cpp.html#传递参数给线程函数
https://devref.9up.dev/docs/cpp.html#使用lambda表达式创建线程
https://devref.9up.dev/docs/cpp.html#处理线程间的同步
https://devref.9up.dev/docs/cpp.html#使用stdasync启动异步任务
https://devref.9up.dev/docs/cpp.html#c-预处理器
https://devref.9up.dev/docs/cpp.html#预处理器
ifhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
elifhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
elsehttps://zh.cppreference.com/w/cpp/preprocessor/conditional
endifhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
ifdefhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
ifndefhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
definehttps://zh.cppreference.com/w/cpp/preprocessor/replace
undefhttps://zh.cppreference.com/w/cpp/preprocessor/replace
includehttps://zh.cppreference.com/w/cpp/preprocessor/include
linehttps://zh.cppreference.com/w/cpp/preprocessor/line
errorhttps://zh.cppreference.com/w/cpp/preprocessor/error
pragmahttps://zh.cppreference.com/w/cpp/preprocessor/impl
definedhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
__has_includehttps://zh.cppreference.com/w/cpp/feature_test
__has_cpp_attributehttps://zh.cppreference.com/w/cpp/feature_test
exporthttps://zh.cppreference.com/w/cpp/keyword/export
importhttps://zh.cppreference.com/mwiki/index.php?title=cpp/keyword/import&action=edit&redlink=1
modulehttps://zh.cppreference.com/mwiki/index.php?title=cpp/keyword/module&action=edit&redlink=1
https://devref.9up.dev/docs/cpp.html#includes
https://devref.9up.dev/docs/cpp.html#defines
https://devref.9up.dev/docs/cpp.html#if
https://devref.9up.dev/docs/cpp.html#error
https://devref.9up.dev/docs/cpp.html#宏
https://devref.9up.dev/docs/cpp.html#令牌连接
https://devref.9up.dev/docs/cpp.html#字符串化
https://devref.9up.dev/docs/cpp.html#文件和行
https://devref.9up.dev/docs/cpp.html#各种各样的
https://devref.9up.dev/docs/cpp.html#转义序列
https://devref.9up.dev/docs/cpp.html#关键字
alignashttps://zh.cppreference.com/w/cpp/keyword/alignas
alignofhttps://zh.cppreference.com/w/cpp/keyword/alignof
andhttps://zh.cppreference.com/w/cpp/keyword/and
and_eqhttps://zh.cppreference.com/w/cpp/keyword/and_eq
asmhttps://zh.cppreference.com/w/cpp/keyword/asm
atomic_cancelhttps://zh.cppreference.com/w/cpp/keyword/atomic_cancel
atomic_commithttps://zh.cppreference.com/w/cpp/keyword/atomic_commit
atomic_noexcepthttps://zh.cppreference.com/w/cpp/keyword/atomic_noexcept
autohttps://zh.cppreference.com/w/cpp/keyword/auto
bitandhttps://zh.cppreference.com/w/cpp/keyword/bitand
bitorhttps://zh.cppreference.com/w/cpp/keyword/bitor
boolhttps://zh.cppreference.com/w/cpp/keyword/bool
breakhttps://zh.cppreference.com/w/cpp/keyword/break
casehttps://zh.cppreference.com/w/cpp/keyword/case
catchhttps://zh.cppreference.com/w/cpp/keyword/catch
charhttps://zh.cppreference.com/w/cpp/keyword/char
char8_thttps://zh.cppreference.com/w/cpp/keyword/char8_t
char16_thttps://zh.cppreference.com/w/cpp/keyword/char16_t
char32_thttps://zh.cppreference.com/w/cpp/keyword/char32_t
classhttps://zh.cppreference.com/w/cpp/keyword/class
complhttps://zh.cppreference.com/w/cpp/keyword/compl
concepthttps://zh.cppreference.com/w/cpp/keyword/concept
consthttps://zh.cppreference.com/w/cpp/keyword/const
constevalhttps://zh.cppreference.com/w/cpp/keyword/consteval
constexprhttps://zh.cppreference.com/w/cpp/keyword/constexpr
constinithttps://zh.cppreference.com/w/cpp/keyword/constinit
const_casthttps://zh.cppreference.com/w/cpp/keyword/const_cast
continuehttps://zh.cppreference.com/w/cpp/keyword/continue
co_awaithttps://zh.cppreference.com/w/cpp/keyword/co_await
co_returnhttps://zh.cppreference.com/w/cpp/keyword/co_return
co_yieldhttps://zh.cppreference.com/w/cpp/keyword/co_yield
decltypehttps://zh.cppreference.com/w/cpp/keyword/decltype
defaulthttps://zh.cppreference.com/w/cpp/keyword/default
deletehttps://zh.cppreference.com/w/cpp/keyword/delete
dohttps://zh.cppreference.com/w/cpp/keyword/do
doublehttps://zh.cppreference.com/w/cpp/keyword/double
dynamic_casthttps://zh.cppreference.com/w/cpp/keyword/dynamic_cast
elsehttps://zh.cppreference.com/w/cpp/keyword/else
enumhttps://zh.cppreference.com/w/cpp/keyword/enum
explicithttps://zh.cppreference.com/w/cpp/keyword/explicit
exporthttps://zh.cppreference.com/w/cpp/keyword/export
externhttps://zh.cppreference.com/w/cpp/keyword/extern
falsehttps://zh.cppreference.com/w/cpp/keyword/false
floathttps://zh.cppreference.com/w/cpp/keyword/float
forhttps://zh.cppreference.com/w/cpp/keyword/for
friendhttps://zh.cppreference.com/w/cpp/keyword/friend
gotohttps://zh.cppreference.com/w/cpp/keyword/goto
ifhttps://zh.cppreference.com/w/cpp/keyword/if
inlinehttps://zh.cppreference.com/w/cpp/keyword/inline
inthttps://zh.cppreference.com/w/cpp/keyword/int
longhttps://zh.cppreference.com/w/cpp/keyword/long
mutablehttps://zh.cppreference.com/w/cpp/keyword/mutable
namespacehttps://zh.cppreference.com/w/cpp/keyword/namespace
newhttps://zh.cppreference.com/w/cpp/keyword/new
noexcepthttps://zh.cppreference.com/w/cpp/keyword/noexcept
nothttps://zh.cppreference.com/w/cpp/keyword/not
not_eqhttps://zh.cppreference.com/w/cpp/keyword/not_eq
nullptrhttps://zh.cppreference.com/w/cpp/keyword/nullptr
operatorhttps://zh.cppreference.com/w/cpp/keyword/operator
orhttps://zh.cppreference.com/w/cpp/keyword/or
or_eqhttps://zh.cppreference.com/w/cpp/keyword/or_eq
privatehttps://zh.cppreference.com/w/cpp/keyword/private
protectedhttps://zh.cppreference.com/w/cpp/keyword/protected
publichttps://zh.cppreference.com/w/cpp/keyword/public
reflexprhttps://zh.cppreference.com/w/cpp/keyword/reflexpr
registerhttps://zh.cppreference.com/w/cpp/keyword/register
reinterpret_casthttps://zh.cppreference.com/w/cpp/keyword/reinterpret_cast
requireshttps://zh.cppreference.com/w/cpp/keyword/requires
returnhttps://zh.cppreference.com/w/cpp/language/return
shorthttps://zh.cppreference.com/w/cpp/keyword/short
signedhttps://zh.cppreference.com/w/cpp/keyword/signed
sizeofhttps://zh.cppreference.com/w/cpp/keyword/sizeof
statichttps://zh.cppreference.com/w/cpp/keyword/static
static_asserthttps://zh.cppreference.com/w/cpp/keyword/static_assert
static_casthttps://zh.cppreference.com/w/cpp/keyword/static_cast
structhttps://zh.cppreference.com/w/cpp/keyword/struct
switchhttps://zh.cppreference.com/w/cpp/keyword/switch
synchronizedhttps://zh.cppreference.com/w/cpp/keyword/synchronized
templatehttps://zh.cppreference.com/w/cpp/keyword/template
thishttps://zh.cppreference.com/w/cpp/keyword/this
thread_localhttps://zh.cppreference.com/w/cpp/keyword/thread_local
throwhttps://zh.cppreference.com/w/cpp/keyword/throw
truehttps://zh.cppreference.com/w/cpp/keyword/true
tryhttps://zh.cppreference.com/w/cpp/keyword/try
typedefhttps://zh.cppreference.com/w/cpp/keyword/typedef
typeidhttps://zh.cppreference.com/w/cpp/keyword/typeid
typenamehttps://zh.cppreference.com/w/cpp/keyword/typename
unionhttps://zh.cppreference.com/w/cpp/keyword/union
unsignedhttps://zh.cppreference.com/w/cpp/keyword/unsigned
usinghttps://zh.cppreference.com/w/cpp/keyword/using
virtualhttps://zh.cppreference.com/w/cpp/keyword/virtual
voidhttps://zh.cppreference.com/w/cpp/keyword/void
volatilehttps://zh.cppreference.com/w/cpp/keyword/volatile
wchar_thttps://zh.cppreference.com/w/cpp/keyword/wchar_t
whilehttps://zh.cppreference.com/w/cpp/keyword/while
xorhttps://zh.cppreference.com/w/cpp/keyword/xor
xor_eqhttps://zh.cppreference.com/w/cpp/keyword/xor_eq
finalhttps://zh.cppreference.com/w/cpp/language/final
overridehttps://zh.cppreference.com/w/cpp/language/override
transaction_safehttps://zh.cppreference.com/w/cpp/language/transactional_memory
transaction_safe_dynamichttps://zh.cppreference.com/w/cpp/language/transactional_memory
https://devref.9up.dev/docs/cpp.html#预处理器-1
ifhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
elifhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
elsehttps://zh.cppreference.com/w/cpp/preprocessor/conditional
endifhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
ifdefhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
ifndefhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
definehttps://zh.cppreference.com/w/cpp/preprocessor/replace
undefhttps://zh.cppreference.com/w/cpp/preprocessor/replace
includehttps://zh.cppreference.com/w/cpp/preprocessor/include
linehttps://zh.cppreference.com/w/cpp/preprocessor/line
errorhttps://zh.cppreference.com/w/cpp/preprocessor/error
pragmahttps://zh.cppreference.com/w/cpp/preprocessor/impl
definedhttps://zh.cppreference.com/w/cpp/preprocessor/conditional
__has_includehttps://zh.cppreference.com/w/cpp/feature_test
__has_cpp_attributehttps://zh.cppreference.com/w/cpp/feature_test
exporthttps://zh.cppreference.com/w/cpp/keyword/export
importhttps://zh.cppreference.com/mwiki/index.php?title=cpp/keyword/import&action=edit&redlink=1
modulehttps://zh.cppreference.com/mwiki/index.php?title=cpp/keyword/module&action=edit&redlink=1
https://devref.9up.dev/docs/cpp.html#另见
C++ Infographics & Cheat Sheetshttps://hackingcpp.com/cpp/cheat_sheets.html
C++ referencehttps://zh.cppreference.com/w/
C++ Language Tutorialshttp://www.cplusplus.com/doc/tutorial/
Kenny Wanghttps://wangchujiang.com/#/app

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.