双语术语表 新闻 2023-10-01 :离线归档(非官方中文)的新版本。 2023-08-10 :离线归档(非官方)的新版本。 2019-06-07 :离线归档的新版本。 支持我们 − FAQ 首页 社区专页 新闻动态 最近更改 随机页面 帮助 链入页面 相关更改 上传文件 特殊页面 打印版本 永久链接 页面信息 其他语言 ال...
Language Keywords−Preprocessor ASCII chart Basic concepts Comments Names(lookup) Types(fundamental types) Themainfunction Expressions Value categories Evaluation order Operators(precedence) Conversions−Literals Statements if−switch for−range-for(C++11) ...
Instrucciones if−switch for−forbasado en rango(C++11) while−do-while Declaraciones−Inicialización Funciones−Sobrecargas Clases(uniones) Plantillas−Excepciones Implementaciones independientes Biblioteca estándar(Archivos de encabezado)
Concetti Libreria di utilità Supporto tipi Gestione della memoria dinamica Gestione degli errori Utilità di programma Data e ora bitset Oggetti funzione pair−tuple(C++11) Libreria di stringhe basic_string Stringhe di byte terminate da Null ...
C 标准库的接口由下列头文件的汇集定义。 <assert.h>条件编译宏,将参数与零比较 <complex.h>(C99 起)复数算术 <ctype.h>用来确定包含于字符数据中的类型的函数 <errno.h>报告错误条件的宏 <fenv.h>(C99 起)浮点数环境 <float.h>浮点数类型的极限 ...
函数模板和变量模板(C++14 起)的显式特化是否为inline/constexpr(C++11 起)/constinit/consteval(C++20 起)只与显式特化自身有关,主模板的声明是否带有对应说明符对它没有影响。模板声明中出现的属性在它的显式特化中也没有效果:(C++11 起) template<classT>voidf(T){/* ... */}template<>inlinevoidf<...
当为std::basic_string 和std::basic_string_view (C++17 起)使用用户定义的字符容器类型时,也需要提供对应的字符特征类(它可以是 std::char_traits 的特化)。 字符串类(std::string 等)类模板 std::basic_string 通用化字符序列如何操作及存储。字符串创建、操作及析构全部由一组便利的类方法与相关函数所...
类模板basic_ostream提供字符流上的高层输出操作。受支持操作包含有格式输出(例如整数)和无格式输出(例如原始字符和字符数组)。此功能以basic_streambuf类所提供的接口实现,通过basic_ios基类访问。典型的实现中,basic_ostream没有非继承的数据成员。 继承图
cppreference-zh epub 版中文文件 C and C++标准参考 C and C++ cppreference-zh ,epub,中文文件,需要使用epub阅读软件打开 上传者:u013077738时间:2018-06-05 TortoiseGit-2.6.0.0-64bit+TortoiseGit-LanguagePack-2.6.0.0-64bit-zh_CN 官网最新版: TortoiseGit-2.6.0.0-64bit TortoiseGit-LanguagePack-2.6.0.0...
任何定义了函数调用运算符的对象都是函数对象。C++ 支持创建、操作新的函数对象,同时也提供了许多内置的函数对象。 函数调用 仅用于阐述的INVOKE(f, arg_0, arg_1, arg_2, ..., arg_N)操作定义如下: 令类型Obj为std::remove_cv<std::remove_reference<decltype(arg_0)>::type>::type: ...